Merge pull request #1338 from wazuh/bug/1331-bug-wazuh-installation-playbook-fails-in-al2023

Fix wazuh-single installation bugs in AL2023
This commit is contained in:
Gonzalo Acuña 2024-07-11 10:18:43 -03:00 committed by GitHub
commit 6c8e2b562f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 37 additions and 13 deletions

View File

@ -1,17 +1,38 @@
---
- name: "Install dependencies"
package:
name:
- unzip
- openssl
- tar
- curl
state: present
register: package_status
until: "package_status is not failed"
retries: 10
delay: 10
block:
- name: "Install common dependencies"
package:
name:
- unzip
- openssl
- tar
state: present
register: package_status
until: "package_status is not failed"
retries: 10
delay: 10
- name: "Install curl"
package:
name: curl
state: present
when: ansible_distribution != "Amazon" and ansible_distribution_version != "2023"
register: package_status
until: "package_status is not failed"
retries: 10
delay: 10
- name: "Install curl minimal in AL2023"
package:
name: curl-minimal
state: present
when: ansible_distribution == "Amazon" and ansible_distribution_version == "2023"
register: package_status
until: "package_status is not failed"
retries: 10
delay: 10
- include_vars: ../../vars/repo_vars.yml

View File

@ -12,12 +12,15 @@
- name: Amazon Linux | Install Amazon extras
- name: Amazon Linux | Configure system settings
block:
- name: Install Amazon extras
- name: Install Amazon extras in Amazon Linux 2
yum:
name: amazon-linux-extras
state: present
when:
- ansible_distribution == 'Amazon'
- ansible_distribution_major_version == '2'
- name: Configure vm.max_map_count
lineinfile: