码迷,mamicode.com
首页 > 其他好文 > 详细

[svc]ansible自动化模块

时间:2018-02-27 12:43:59      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:uname   svc   rip   ifconf   eth   conf   帮助   主机   command   

ansible命令执行模块

- command模块 [执行远程命令]
$ ansible n1 -m command -a 'uname -n'

- raw模块 [类似于command模块、支持管道传递]
$ ansible n1 -m raw -a "ifconfig eth0 |sed -n 2p |awk '{print \$2}' |awk -F: '{print \$2}'"

- shell模块 [执行远程主机的shell/python脚本]
$ ansible n1 -m shell -a 'bash /root/test.sh'


- script模块 [在远程主机执行主控端的shell/python脚本 ]  (使用相对路径)
$ ansible n1 -m script -a '/etc/ansible/test.sh

查看模块帮助

ansible-doc shell

[svc]ansible自动化模块

标签:uname   svc   rip   ifconf   eth   conf   帮助   主机   command   

原文地址:https://www.cnblogs.com/iiiiher/p/8478125.html

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