mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-07-02 07:48:32 +02:00
aaa
This commit is contained in:
20
roles/loki-agent/tasks/main.yml
Executable file
20
roles/loki-agent/tasks/main.yml
Executable file
@ -0,0 +1,20 @@
|
||||
- block:
|
||||
- name: Get keys
|
||||
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: Add repo
|
||||
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 cache
|
||||
ansible.builtin.apt:
|
||||
update_cache: true
|
||||
- name: Instal wazuh
|
||||
ansible.builtin.apt:
|
||||
name: wazuh-agent
|
||||
environment:
|
||||
WAZUH_MANAGER: 'm-server.home.lan'
|
||||
WAZUH_AGENT_NAME: "{{ inventory_hostname }}"
|
||||
- name: Restart wazuh service
|
||||
ansible.builtin.service:
|
||||
name: wazuh-agent
|
||||
state: restarted
|
||||
enabled: true
|
||||
become: true
|
Reference in New Issue
Block a user