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

Ansible 远程执行脚本

时间:2019-01-03 12:52:54      阅读:426      评论:0      收藏:0      [点我收藏+]

标签:一个   shel   test   .sh   bin   color   客户   style   mode   

1. 先在服务端创建一个 shell 脚本

[root@localhost ~]$ cat /tmp/test.sh 
#!/bin/bash
echo "hello world"

2. 把脚本分发到客户端

[root@localhost ~]$ ansible 192.168.119.134 -m copy -a "src=/tmp/test.sh dest=/tmp/test.sh mode=0755"

3. 远程执行脚本,使用 shell 模块

[root@localhost ~]$ ansible 192.168.119.134 -m shell -a "/tmp/test.sh"
192.168.119.134 | CHANGED | rc=0 >>
hello world

 

 

 

 

 

    

Ansible 远程执行脚本

标签:一个   shel   test   .sh   bin   color   客户   style   mode   

原文地址:https://www.cnblogs.com/pzk7788/p/10213459.html

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