minifirewall-tail: simplify template selection

This commit is contained in:
Jérémy Lecour 2017-05-10 14:33:23 +02:00 committed by Jérémy Lecour
parent fd5324db84
commit 02019e82e3
3 changed files with 11 additions and 14 deletions

View file

@ -3,8 +3,8 @@
Compiles a `minifirewall.tail` file based on templates and source it at the end of minifirewall configuration.
Templates are looked up in that order :
1. `{{ playbook_dir}}/templates/minifirewall-tail/{{ inventory_hostname}}`
2. `{{ playbook_dir}}/templates/minifirewall-tail/{{ host_group}}` (NB : `host_group` is not a core variable, it must be defined in `group_vars` files.)
3. `{{ playbook_dir}}/templates/minifirewall-tail/default`
1. `{{ playbook_dir}}/templates/minifirewall-tail/minifirewall.{{ inventory_hostname}}.tail.j2`
2. `{{ playbook_dir}}/templates/minifirewall-tail/minifirewall.{{ host_group}}.tail.j2` (NB : `host_group` is not a core variable, it must be defined in `group_vars` files.)
3. `{{ playbook_dir}}/templates/minifirewall-tail/minifirewall.default.tail.j2`
If nothing is found, the role falls back to the temlate embedded in the role : `templates/default`
If nothing is found, the role falls back to the template embedded in the role : `templates/minifirewall.default.tail.j2`

View file

@ -5,17 +5,14 @@
dest: /etc/default/minifirewall.tail
force: yes
with_first_found:
- files:
- "{{ inventory_hostname }}"
- "{{ host_group }}"
- general
paths:
- templates/minifirewall-tail
- default
register: minifirewall_tail_file
- "templates/minifirewall-tail/minifirewall.{{ inventory_hostname }}.tail.j2"
- "templates/minifirewall-tail/minifirewall.{{ host_group }}.tail.j2"
- "templates/minifirewall-tail/minifirewall.default.tail.j2"
- "minifirewall.default.tail.j2"
register: minifirewall_tail_template
- debug:
var: minifirewall_tail_file
var: minifirewall_tail_template
verbosity: 1
- name: source minifirewall.tail at the end of the main file
@ -49,7 +46,7 @@
register: minifirewall_init_restart
failed_when: "'starting IPTables rules is now finish : OK' not in minifirewall_init_restart.stdout"
changed_when: "'starting IPTables rules is now finish : OK' in minifirewall_init_restart.stdout"
when: minifirewall_is_running.rc == 0 and (minifirewall_tail_file | changed or minifirewall_config_ips | changed or minifirewall_config_ports | changed)
when: minifirewall_is_running.rc == 0 and (minifirewall_tail_template | changed or minifirewall_config_ips | changed or minifirewall_config_ports | changed)
- debug:
var: minifirewall_init_restart