diff options
| author | Kevin Fenzi <kevin@scrye.com> | 2017-04-13 15:46:14 +0000 |
|---|---|---|
| committer | Kevin Fenzi <kevin@scrye.com> | 2017-04-13 15:46:14 +0000 |
| commit | 0acfaa2a7e36c30c5f8ceb4af4532e6791a2a3e7 (patch) | |
| tree | c324a3836fce37f90c7ef090c2cf68d9c9d36538 /tasks/postfix_basic.yml | |
| parent | 87a32844b16cfca381b1122a4dd405144524857f (diff) | |
| download | ansible-0acfaa2a7e36c30c5f8ceb4af4532e6791a2a3e7.tar.gz ansible-0acfaa2a7e36c30c5f8ceb4af4532e6791a2a3e7.tar.xz ansible-0acfaa2a7e36c30c5f8ceb4af4532e6791a2a3e7.zip | |
Fix handlers, roles, and tasks to be handlers_path, roles_path and tasks_path so as not to conflict with ansible variables.
Fix duplicate definition of become default that was in group_vars/all as well as vars/global.
Diffstat (limited to 'tasks/postfix_basic.yml')
| -rw-r--r-- | tasks/postfix_basic.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tasks/postfix_basic.yml b/tasks/postfix_basic.yml index 01ff1460b..5a9db7eb5 100644 --- a/tasks/postfix_basic.yml +++ b/tasks/postfix_basic.yml @@ -8,11 +8,11 @@ copy: src={{ item }} dest=/etc/postfix/main.cf with_first_found: - "{{ postfix_maincf }}" - - "{{ roles }}/base/files/postfix/main.cf/main.cf.{{ ansible_fqdn }}" - - "{{ roles }}/base/files/postfix/main.cf/main.cf.{{ inventory_hostname }}" - - "{{ roles }}/base/files/postfix/main.cf/main.cf.{{ host_group }}" - - "{{ roles }}/base/files/postfix/main.cf/main.cf.{{ postfix_group }}" - - "{{ roles }}/base/files/postfix/main.cf/main.cf" + - "{{ roles_path }}/base/files/postfix/main.cf/main.cf.{{ ansible_fqdn }}" + - "{{ roles_path }}/base/files/postfix/main.cf/main.cf.{{ inventory_hostname }}" + - "{{ roles_path }}/base/files/postfix/main.cf/main.cf.{{ host_group }}" + - "{{ roles_path }}/base/files/postfix/main.cf/main.cf.{{ postfix_group }}" + - "{{ roles_path }}/base/files/postfix/main.cf/main.cf" notify: - restart postfix tags: |
