This commit is contained in:
Ruben Blanco 2023-10-18 15:54:39 +02:00
parent a7e36e3ec4
commit c8ffa99edb
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
- name: Gather the package facts
ansible.builtin.package_facts:
manager: auto
register: packages
register: packages.stdout.find('fail2ban')
# register: packages
# print the package facts in var
@ -22,7 +22,7 @@
state: present
# when: packages.stdout.find('fail2ban') == ""
# when: "{{ packages['fail2ban'] | length }}"
when: packages.stdout.find('fail2ban') == -1
when: packages == -1
# config fail2ban if is there is in the system
#- name: config fail2ban