aboutsummaryrefslogtreecommitdiffstats
path: root/roles/pf/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/pf/tasks/main.yml')
-rw-r--r--roles/pf/tasks/main.yml28
1 files changed, 14 insertions, 14 deletions
diff --git a/roles/pf/tasks/main.yml b/roles/pf/tasks/main.yml
index 4fba69e..9737315 100644
--- a/roles/pf/tasks/main.yml
+++ b/roles/pf/tasks/main.yml
@@ -3,35 +3,35 @@
- name: generate pf configuration
ansible.builtin.template:
src: pf.conf.j2
- dest: "{{ pf_configuration_file }}"
+ dest: "{{ pf__configuration_file }}"
owner: 0
group: 0
mode: "0600"
- register: pf_result_generate_configuration
+ register: pf__result_generate_configuration
- name: lint pf configuration # noqa: no-handler
- ansible.builtin.command: "pfctl -nf {{ pf_configuration_file }}"
- register: pf_result_lint_configuration
+ ansible.builtin.command: "pfctl -nf {{ pf__configuration_file }}"
+ register: pf__result_lint_configuration
changed_when:
- - pf_result_generate_configuration.changed
- - pf_result_lint_configuration.rc != 0
+ - pf__result_generate_configuration.changed
+ - pf__result_lint_configuration.rc != 0
- name: restart pf # noqa: no-handler
- ansible.builtin.command: pfctl -f "{{ pf_configuration_file }}"
- when: pf_result_generate_configuration.changed
+ ansible.builtin.command: pfctl -f "{{ pf__configuration_file }}"
+ when: pf__result_generate_configuration.changed
- name: test pf rules
ansible.builtin.wait_for:
port: "{{ item }}"
- delay: "{{ pf_test_delay }}"
+ delay: "{{ pf__test_delay }}"
state: started
- loop: "{{ pf_test_ports }}"
+ loop: "{{ pf__test_ports }}"
- name: enable pf
ansible.builtin.command: pfctl -e
- register: pf_result_enable
+ register: pf__result_enable
changed_when:
- - "'already enabled' not in pf_result_enable.stderr"
+ - "'already enabled' not in pf__result_enable.stderr"
failed_when:
- - pf_result_enable.rc != 0
- - "'already enabled' not in pf_result_enable.stderr"
+ - pf__result_enable.rc != 0
+ - "'already enabled' not in pf__result_enable.stderr"
remember that computers suck.