You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 line
338B

  1. ---
  2. - name: install package
  3. apt:
  4. pkg: postfix
  5. - name: configuration pull directory
  6. local_action: file
  7. args:
  8. path: host_files/{{inventory_hostname}}/etc
  9. state: directory
  10. - name: pull configuration
  11. synchronize:
  12. src: /etc/postfix
  13. dest: host_files/{{inventory_hostname}}/etc/
  14. mode: pull
  15. recursive: true