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.
|
- ---
-
- - name: install package
- apt:
- pkg: postfix
-
- - name: main configuration
- template:
- src: main.cf.j2
- dest: /etc/postfix/main.cf
-
- - include: postfixadmin.yml
-
- - name: configuration pull directory
- local_action: file
- args:
- path: ~/host_files/{{inventory_hostname}}/etc
- state: directory
-
- - name: pull configuration
- synchronize:
- src: /etc/postfix
- dest: ~/host_files/{{inventory_hostname}}/etc/
- mode: pull
- recursive: true
|