command 模塊是 ansible ad-hoc command 模式下的默認模塊邻寿,也就是說你不需要指定參數(shù)-m
。
Example
1. creates
creates 表示存在則不運行命令
ansible group1 -a "ls / creates=/tem/testfile"
上面的命令表示:如果 /tem/testfile 文件夾不存在則運行 ls / 命令
2. removes
removes 表示存在運行則運行
ansible group1 -a "ls / removes=/tem/testfile"
上面的命令表示:如果 /tem/testfile 文件夾存在則運行 ls / 命令