应用
- copy模块将ansible主机上的文件拷贝到远程主机
- fetch模块将远程主机上的文件拉取到ansible主机
参数
- src:指定拉取或拷贝的文件,适用于copy|fetch
- dest:指定存放的位置,适用于copy|fetch
- content:指定远程主机文件的内容,而不是拷贝文件到远程主机上,仅限copy
- force:当远程主机已存在同名文件时,yes强制覆盖,no不会执行覆盖操作,默认yes
- backup:当远程主机已存在同名文件时,yes先备份再拷贝
- owner:指定文件属主
- group:指定文件属组
- mode:指定文件权限
示例
copy模块:
- 将/opt/test文件拷贝到远程主机/opt/test目录下,若有同名文件则先备份,属主test,权限644
]# ansible all -m copy -a 'src=/opt/test dest=/opt/test/ backup=yes owner=test mode=0644'
- 在远程主机/opt/test目录下生成test文件,内容是第一行1234,第二行5678
]# ansible all -m copy -a 'content="1234
5678" dest=/opt/test/test'
fetch模块:
- 将远程主机192.168.153.130/opt/test/test文件拉取到ansible主机/opt目录下
]# ansible 192.168.153.130 -m fetch -a 'src=/opt/test/test dest=/opt/'