码迷,mamicode.com
首页 > 系统相关 > 详细

ansible之shell模块

时间:2018-03-05 11:09:39      阅读:166      评论:0      收藏:0      [点我收藏+]

标签: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

ansible之shell模块

标签:ansible之shell模块

原文地址:http://blog.51cto.com/wujianwei/2082897

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!