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.

22 line
397B

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