feat/ufw_implementation #2

Merged
Damien merged 3 commits from feat/ufw_implementation into main 2026-06-01 08:49:12 +00:00
Showing only changes of commit 5768492bd3 - Show all commits

View File

@@ -19,7 +19,7 @@
ansible.builtin.command:
cmd: rc-update add ufw default
register: rc_update_result
changed_when: >-
changed_when: >- # ">- : transform multiple lines into one line"
'already' not in rc_update_result.stdout
and 'already' not in rc_update_result.stderr
failed_when: rc_update_result.rc != 0