vagrant/wazuh/provision/setup-wazuh-cli.yml
2025-02-02 11:33:01 +01:00

26 lines
855 B
YAML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
- hosts: all
become: true
tasks:
- name: Recup clefs depot
ansible.builtin.shell: curl -s https://packages.wazuh.com/key/GPG-KEY-WAZUH | gpg --no-default-keyring --keyring gnupg-ring:/usr/share/keyrings/wazuh.gpg --import && chmod 644 /usr/share/keyrings/wazuh.gpg
- name: Ajoute depot
ansible.builtin.shell: echo "deb [signed-by=/usr/share/keyrings/wazuh.gpg] https://packages.wazuh.com/4.x/apt/ stable main" | tee -a /etc/apt/sources.list.d/wazuh.list
- name: Update apt
ansible.builtin.apt:
update_cache: yes
- name: Installation wazuh-agent et liaison wazuh-server
ansible.builtin.shell: "WAZUH_MANAGER={{ srv_ip }} apt-get install wazuh-agent"
- name: Relance wazuh-agent
ansible.builtin.systemd:
name: wazuh-agent
state: restarted
enabled: true
daemon_reload: true