ansible-ansible.legacy.command Invoked with creates=None executable=None _uses_shell=True ...in=None Hint: Some lines were ellipsized, use -l to show in full
时间: 2024-04-07 18:29:36 浏览: 157
这看起来像是 Ansible 执行命令时的一些参数信息,其中包括:
- creates:指定一个文件,如果该文件存在,则不执行该命令;
- executable:指定命令的可执行文件;
- _uses_shell:是否使用 shell 执行命令;
- stdin:标准输入流;
- Hint:一些行被省略了,可以使用 -l 参数以完整显示。
这些参数通常是在编写 Ansible playbook 时使用的,用于指定执行命令的详细信息。
阅读全文