ansible之shell模块

前端之家收集整理的这篇文章主要介绍了ansible之shell模块前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

例:通过命令对某节点修改时间
[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

猜你在找的Bash相关文章