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.
|
- ---
-
- - name: install package
- apt:
- pkg: "{{ item }}"
- with_items:
- - dovecot-imapd
- - dovecot-lmptd
-
- - name: configuration pull directory
- local_action: file
- args:
- path: host_files/{{inventory_hostname}}/etc
- state: directory
-
- - name: pull configuration
- synchronize:
- src: /etc/dovecot
- dest: host_files/{{inventory_hostname}}/etc/
- mode: pull
- recursive: true
|