Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

22 wiersze
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