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

ansible之copy模块测试

时间:2018-03-05 11:21:52      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:ansible之copy模块测试

模块简单介绍:
各模块位置(default=/usr/share/ansible)
各模块使用说明可以用“ansible-doc 【模块名称】”的方式查询,也可以使用-s蚕食来指定模块查询使用说明。
ansible-doc -s copy

例:把主控端/root 目录下的test.sh 文件拷贝到到指定节点上
测试文件test.sh

[root@master ~]# vim test.sh
#!/bin/sh
Time=`date +"%m-%d %H:%M"`
echo "$Time script testing success!"

ansible all -m copy -a "src=/root/test.sh dest=/tmp/"
[root@master ~]# ansible all -m copy -a "src=/root/test.sh dest=/tmp/"

paramiko: The authenticity of host ‘127.0.0.1‘ can‘t be established.
The ssh-rsa key fingerprint is 3d906ef1d450e4cc7031aef5e8c296f6.
Are you sure you want to continue connecting (yes/no)?
10.0.0.20 | SUCCESS => {
    "changed": true, 
    "checksum": "15bea568f36e8f8cbdce4f528232f34056673f2c", 
    "dest": "/tmp/test.sh", 
    "gid": 0, 
    "group": "root", 
    "md5sum": "925ddc87eb89ecd133ddbb8028a762bf", 
    "mode": "0644", 
    "owner": "root", 
    "size": 76, 
    "src": "/root/.ansible/tmp/ansible-tmp-1469844893.62-139787019066912/source", 
    "state": "file", 
    "uid": 0
}
10.0.0.21 | SUCCESS => {
    "changed": true, 
    "checksum": "15bea568f36e8f8cbdce4f528232f34056673f2c", 
    "dest": "/tmp/test.sh", 
    "gid": 0, 
    "group": "root", 
    "md5sum": "925ddc87eb89ecd133ddbb8028a762bf", 
    "mode": "0644", 
    "owner": "root", 
    "size": 76, 
    "src": "/root/.ansible/tmp/ansible-tmp-1469844894.04-150966934090967/source", 
    "state": "file", 
    "uid": 0
}

如果执行过程中出现错误;解决方法:
错误:

10.0.0.20 | FAILED! => {
"changed": false,
"checksum": "28adc51d1e42f06598325651d1fece8efd6eb907",
"failed": true,
"msg": "Aborting, target uses selinux but python bindings (libselinux-python) aren‘t
installed!"
}

解决:关闭防火墙和selinux

ansible之copy模块测试

标签:ansible之copy模块测试

原文地址:http://blog.51cto.com/wujianwei/2082890

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