Ansible复制文件

时间:2017-02-24 08:26:03

标签: ansible

如何将文件从机器A复制到机器B和机器C在不同位置。 即:

在机器A上我有文件abc,我想将它复制到机器B的/ tmp区域和机器C的/ op区域

1 个答案:

答案 0 :(得分:1)

假设库存结构如下:

[remote-servers]
192.168.X.1
192.168.X.10
192.168.X.20
192.168.X.30

运行以下复制任务:

- name: copy the file to the remote machine
  hosts: remote-servers
  copy:
    src: /path/to/file
    dest: /path/to/dest