例:通过命令对某节点修改时间
[root@master tmp]# ansible slave -m command -a 'date -s "2016/5/13 13:12"'
client02 | SUCCESS | rc=0 >>
Fri May 13 13:12:00 CST 2016
agent.test.com | SUCCESS | rc=0 >>
Fri May 13 13:12:00 CST 2016
[root@master tmp]# ansible slave -m shell -a 'date -s "2016/5/13 13:12"'
client02 | SUCCESS | rc=0 >>
Fri May 13 13:12:00 CST 2016
agent.test.com | SUCCESS | rc=0 >>
Fri May 13 13:12:00 CST 2016
注意:上面的command 可以换成shell
原文链接:https://www.f2er.com/bash/388595.html