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

[Ansible]script模块

时间:2020-09-18 01:10:39      阅读:31      评论:0      收藏:0      [点我收藏+]

标签:服务   serve   ceph   rip   err   nes   shell   节点   line   

  • 将管理节点的脚本上传至被管理节点执行,理论上此模块不许需要被管理服务器上有python
[root@ceph1 ~]# cat a.sh
touch /tmp/ansible-script

[root@ceph1 ~]# ansible webservers -m script -a "a.sh"
ceph3 | CHANGED => {
    "changed": true,
    "rc": 0,
    "stderr": "Shared connection to ceph3 closed.\r\n",
    "stderr_lines": [
        "Shared connection to ceph3 closed."
    ],
    "stdout": "",
    "stdout_lines": []
}

[root@ceph1 ~]# ansible webservers -m shell -a "ls -l /tmp/ | grep ansible"
ceph3 | CHANGED | rc=0 >>
drwx------  2 root root       41 9月  14 11:50 ansible_command_payload_kxNYUy
-rw-r--r--  1 root root        0 9月  14 11:48 ansible-script

END

[Ansible]script模块

标签:服务   serve   ceph   rip   err   nes   shell   节点   line   

原文地址:https://www.cnblogs.com/leoshi/p/13666721.html

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