Ansible 远程执行脚本
Posted pzk7788
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ansible 远程执行脚本相关的知识,希望对你有一定的参考价值。
1. 先在服务端创建一个 shell 脚本
[[email protected] ~]$ cat /tmp/test.sh #!/bin/bash echo "hello world"
2. 把脚本分发到客户端
[[email protected] ~]$ ansible 192.168.119.134 -m copy -a "src=/tmp/test.sh dest=/tmp/test.sh mode=0755"
3. 远程执行脚本,使用 shell 模块
[[email protected] ~]$ ansible 192.168.119.134 -m shell -a "/tmp/test.sh" 192.168.119.134 | CHANGED | rc=0 >> hello world
以上是关于Ansible 远程执行脚本的主要内容,如果未能解决你的问题,请参考以下文章