我一直在尝试使用ansible Ad-Hoc命令在/ home / ubuntu /位置的“主机”计算机folder1中创建文件夹
ansible host01 -i myhosts -m -a“ mkdir folder1”
答案 0 :(得分:1)
当您的命令为-m
时,mkdir
是不必要的。
首先尝试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"