cfsky 发表于 2018-7-29 06:08:01

ansible之shell模块

  例:通过命令对某节点修改时间
  #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
  #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
页: [1]
查看完整版本: ansible之shell模块