mirror of
https://github.com/roles-ansible/ansible_role_unbound.git
synced 2024-08-16 13:39:49 +02:00
improve validating mechanism
This commit is contained in:
parent
b3c0dfffab
commit
347c8600b9
5 changed files with 40 additions and 46 deletions
|
@ -1,14 +1,4 @@
|
|||
---
|
||||
- name: unbound checkconf
|
||||
become: true
|
||||
ansible.builtin.command: unbound-checkconf /etc/unbound/unbound.conf
|
||||
retries: 5
|
||||
delay: 3
|
||||
register: result
|
||||
until: result.rc == 0
|
||||
|
||||
notify: systemctl restart unbound
|
||||
|
||||
- name: systemctl restart unbound
|
||||
become: true
|
||||
ansible.builtin.service:
|
||||
|
|
23
tasks/configure.yml
Normal file
23
tasks/configure.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
---
|
||||
- name: Copy unbound configuration snippets
|
||||
become: true
|
||||
ansible.builtin.copy:
|
||||
src: '{{ item }}'
|
||||
dest: '/etc/unbound/unbound.conf.d/'
|
||||
owner: root
|
||||
group: root
|
||||
mode: 'u=rw,g=r,o=r'
|
||||
with_fileglob:
|
||||
- 'files/snippets/*.conf'
|
||||
notify: systemctl restart unbound
|
||||
|
||||
- name: Copy main unbound configuration
|
||||
become: true
|
||||
ansible.builtin.template:
|
||||
src: 'files/unbound.conf'
|
||||
dest: '/etc/unbound/unbound.conf'
|
||||
owner: root
|
||||
group: root
|
||||
mode: 'u=rw,g=r,o=r'
|
||||
validate: unbound-checkconf %s
|
||||
notify: systemctl restart unbound
|
13
tasks/install.yml
Normal file
13
tasks/install.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
- name: update debian cache
|
||||
become: true
|
||||
ansible.builtin.apt:
|
||||
update_cache: true
|
||||
cache_valid_time: 43200
|
||||
when: ansible_pkg_mgr == "apt"
|
||||
|
||||
- name: install unbound
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name: unbound
|
||||
state: "{{ unbound__state }}"
|
|
@ -3,40 +3,8 @@
|
|||
ansible.builtin.include_tasks: versioncheck.yml
|
||||
when: submodules_versioncheck|bool
|
||||
|
||||
- name: update cache
|
||||
become: true
|
||||
ansible.builtin.apt:
|
||||
state: "{{ unbound__state }}"
|
||||
update_cache: true
|
||||
cache_valid_time: 43200
|
||||
when: ansible_pkg_mgr == "apt"
|
||||
|
||||
- name: install unbound
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name: unbound
|
||||
state: present
|
||||
ansible.builtin.include_tasks: install.yml
|
||||
|
||||
- name: Copy unbound configuration snippets
|
||||
become: true
|
||||
ansible.builtin.copy:
|
||||
src: '{{ item }}'
|
||||
dest: '/etc/unbound/unbound.conf.d/'
|
||||
owner: root
|
||||
group: root
|
||||
mode: 'u=rw,g=r,o=r'
|
||||
with_fileglob:
|
||||
- 'files/snippets/*.conf'
|
||||
notify:
|
||||
- unbound checkconf
|
||||
|
||||
- name: Copy main unbound configuration
|
||||
become: true
|
||||
ansible.builtin.template:
|
||||
src: 'files/unbound.conf'
|
||||
dest: '/etc/unbound/unbound.conf'
|
||||
owner: root
|
||||
group: root
|
||||
mode: 'u=rw,g=r,o=r'
|
||||
notify:
|
||||
- unbound checkconf
|
||||
- name: configure unbound
|
||||
ansible.builtin.include_tasks: configure.yml
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
---
|
||||
playbook_version_number: 68 # should be integer
|
||||
playbook_version_number: 69 # should be integer
|
||||
playbook_version_path: 'role-unbound_roles-ansible_github.com.version'
|
||||
|
|
Loading…
Reference in a new issue