Ansible中有一個很重要的功能就是能夠執行ad-hoc命令,可能有些人不懂ad-hoc這個詞的意思,它表示即時的意思,或者說隨意的意思。
與之相對的是ansible playbook功能,playbook適用於批量部署環境,通常不用常常改動。而ad-hoc命令適用於業務變動等操做場景,好比批量部署一個配置文件,重啓某個服務,安裝一些包等。
ad-hoc命令中有兩個模塊:command, shell。不少人不知道他們的區別是什麼,其實很簡單。html
MODULE_ARGS = 'rm -f /etc/yum.repos.d/CentOS* #USE_SHELL'python
例如:
[root@master tmp]# ansible slave -m command -a "rm -f /tmp/test*" -U root -s -f 50 -kK
SSH password:
SUDO password[defaults to SSH password]:
client02 | SUCCESS | rc=0 >>shell
client01 | SUCCESS | rc=0 >>安全
[root@client01 tmp]# ls
test0001 test.sh txt01 yum.logruby
[root@client02 tmp]# ls
test0001 test.sh txt01 yum.logide
[root@master tmp]# ansible slave -m shell -a "rm -f /tmp/test*" -U root -s -f 50 -kK
SSH password:
SUDO password[defaults to SSH password]:
client01 | SUCCESS | rc=0 >>函數
client02 | SUCCESS | rc=0 >>
[root@client01 tmp]# ls
txt01 yum.log
[root@client02 tmp]# ls
txt01 yum.log命令行
以上就是shell 和command的區別
看到這裏,想必已經讓你清晰不少了吧!htm
http://www.cnblogs.com/hemhem/archive/2011/03/14/2087482.htmlblog