diff options
Diffstat (limited to 'roles/pf/tasks/main.yml')
-rw-r--r-- | roles/pf/tasks/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/pf/tasks/main.yml b/roles/pf/tasks/main.yml index e5b8af8..eb6f078 100644 --- a/roles/pf/tasks/main.yml +++ b/roles/pf/tasks/main.yml @@ -1,5 +1,5 @@ - name: generate pf configuration - template: + ansible.builtin.template: src: pf.conf.j2 dest: "{{ pf_configuration_file }}" owner: 0 @@ -11,7 +11,7 @@ - restart pf - name: test ssh connection on new pf rule - wait_for: + ansible.builtin.wait_for: port: "{{ ansible_port }}" delay: 2 state: started |