moved notify

This commit is contained in:
rene
2022-04-21 16:34:16 +02:00
parent 80987cd647
commit b8fc17e19b
2 changed files with 3 additions and 2 deletions

View File

@@ -13,6 +13,7 @@
- { regexp: '^\s*listen-on \{(?:[\s\n]*(?:\d{1,3}\.){3}\d{1,3};)*[\s\n]*\};', option: "\tlisten-on { {{ ansible_default_ipv4.address }}; };"} - { regexp: '^\s*listen-on \{(?:[\s\n]*(?:\d{1,3}\.){3}\d{1,3};)*[\s\n]*\};', option: "\tlisten-on { {{ ansible_default_ipv4.address }}; };"}
- { regexp: '^\s*listen-on-v6 \{[\s\n]*any;[\s\n]*\};', option: "\tlisten-on-v6 { {{ ansible_default_ipv6.address }}; };"} - { regexp: '^\s*listen-on-v6 \{[\s\n]*any;[\s\n]*\};', option: "\tlisten-on-v6 { {{ ansible_default_ipv6.address }}; };"}
- { regexp: '^\s*listen-on-v6 \{(?:[\s\n]*[\da-z:]*;)[\s\n]*\};', option: "\tlisten-on-v6 { {{ ansible_default_ipv6.address }}; };"} - { regexp: '^\s*listen-on-v6 \{(?:[\s\n]*[\da-z:]*;)[\s\n]*\};', option: "\tlisten-on-v6 { {{ ansible_default_ipv6.address }}; };"}
notify: restart_named
- name: nameserver | bind | basic configuration cont'd - name: nameserver | bind | basic configuration cont'd
lineinfile: lineinfile:
@@ -22,3 +23,4 @@
line: "\tlisten-on { {{ ansible_default_ipv4.address }}; };" line: "\tlisten-on { {{ ansible_default_ipv4.address }}; };"
insertafter: "options {" insertafter: "options {"
validate: "{{ named_checkconf }} %s" validate: "{{ named_checkconf }} %s"
notify: restart_named

View File

@@ -12,7 +12,6 @@
- include_tasks: configure_bind_snmpd.yml - include_tasks: configure_bind_snmpd.yml
rescue: rescue:
- set_fact: task_failed=true - set_fact: task_failed=true
notify: restart_named
when: bind == true when: bind == true
- block: - block: