我一直在尝试使用Ansible Ad-Hoc命令
在"主机"机器文件夹中创建一个文件夹。Ansible Host01 -i myHosts -M -A" Mkdir Folder1"
当您的命令为mkdir
。
-m
是不需要的。首先尝试ansible -i myhost -a "pwd"
。然后,您会看到将执行mkdir命令的位置。
ansible -i myhost -a "mkdir testa"
将在此位置文件夹testa
中创建。
替代方案,当您要使用模块时,请尝试
ansible -i myhost -m file -a "path=/home/youruser/testb state=directory"