X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=playbooks%2Fdebian%2Froles%2Fnamed%2Ftasks%2Fmain.yml;h=3a70042c033fe8098695852692f3227fa05d7642;hb=9e362f765b63334b5f48c40da7ebdd2431e79e7e;hp=193cace3a3ff81ca4ade2cdf0804b194a24b345f;hpb=d90f0d8096a157e92e7e572d6dbd61b7196d98ae;p=ansible.git diff --git a/playbooks/debian/roles/named/tasks/main.yml b/playbooks/debian/roles/named/tasks/main.yml index 193cace..3a70042 100644 --- a/playbooks/debian/roles/named/tasks/main.yml +++ b/playbooks/debian/roles/named/tasks/main.yml @@ -1,37 +1,46 @@ - name: Check named.conf.options - shell: "grep -c '^\\s*allow-query' /etc/bind/named.conf.options || echo 0" + become: true + shell: "grep -c '^\\s*allow-query' /etc/bind/named.conf.options || :" register: named_conf - changed_when: named_conf.stdout == "0" + changed_when: named_conf.stdout in ('', "0") - debug: msg: "BIND has already been configured" - when: named_conf.stdout != "0" + when: named_conf.stdout not in ('', "0") -- name: Install BIND - become: true - apt: - autoclean: yes - autoremove: yes - install_recommends: no - name: bind9 - purge: yes - state: latest - update_cache: yes - when: named_conf.stdout == "0" +- block: + - name: Install BIND + become: true + apt: + autoclean: yes + autoremove: yes + cache_valid_time: 3600 + install_recommends: no + name: bind9 + state: latest + update_cache: yes -- name: Configure BIND - become: true - copy: - src: named.conf.options - dest: /etc/bind/named.conf.options - owner: bind - group: bind - mode: '0600' - when: named_conf.stdout == "0" + - name: Configure BIND + become: true + copy: + src: named.conf.options + dest: /etc/bind/named.conf.options + owner: bind + group: bind + mode: '0600' -- name: Reload BIND - become: true - service: - name: bind9 - state: reloaded - when: named_conf.stdout == "0" + - name: Reload BIND + become: true + service: + name: bind9 + state: reloaded + + - name: Configure resolver + become: true + copy: + content: "nameserver 127.0.0.1" + dest: /etc/resolv.conf + owner: root + group: root + mode: '0644' + when: named_conf.stdout in ('', "0")