Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

26 lines
462B

  1. ---
  2. - name: install package
  3. apt:
  4. pkg: postfix
  5. - name: main configuration
  6. template:
  7. src: main.cf.j2
  8. dest: /etc/postfix/main.cf
  9. - include: postfixadmin.yml
  10. - name: configuration pull directory
  11. local_action: file
  12. args:
  13. path: ~/host_files/{{inventory_hostname}}/etc
  14. state: directory
  15. - name: pull configuration
  16. synchronize:
  17. src: /etc/postfix
  18. dest: ~/host_files/{{inventory_hostname}}/etc/
  19. mode: pull
  20. recursive: true