Remove parameter 'warn: false' from ansible roles

This commit is contained in:
Jesus Garcia 2025-01-20 10:07:06 -05:00
parent ac84a2b058
commit d094df0158
No known key found for this signature in database
GPG Key ID: 8461CA78326C96C9
3 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@
set -o pipefail set -o pipefail
curl -s {{ wazuh_agent_config.repo.gpg }} | apt-key add - curl -s {{ wazuh_agent_config.repo.gpg }} | apt-key add -
args: args:
warn: false # warn: false
executable: /bin/bash executable: /bin/bash
changed_when: false changed_when: false
when: when:

View File

@ -18,7 +18,7 @@
set -o pipefail set -o pipefail
curl -s {{ wazuh_manager_config.repo.gpg }} | apt-key add - curl -s {{ wazuh_manager_config.repo.gpg }} | apt-key add -
args: args:
warn: false # warn: false
executable: /bin/bash executable: /bin/bash
changed_when: false changed_when: false
when: when:

View File

@ -3,7 +3,7 @@
shell: | shell: |
./check_packages.sh {{ wazuh_version }} ./check_packages.sh {{ wazuh_version }}
args: args:
warn: false # warn: false
executable: /bin/bash executable: /bin/bash
chdir: "{{ role_path }}/scripts/" chdir: "{{ role_path }}/scripts/"
delegate_to: localhost delegate_to: localhost