wazuh-ansible-4.8.1/roles/wazuh/wazuh-dashboard/tasks/Debian.yml
2022-05-12 14:37:57 -03:00

31 lines
654 B
YAML

---
- block:
- include_vars: debian.yml
- name: Add apt repository signing key
apt_key:
url: "{{ wazuh_repo.gpg }}"
state: present
- name: Debian systems | Add Wazuh dashboard repo
apt_repository:
repo: "{{ wazuh_repo.apt }}"
state: present
update_cache: yes
- name: Install Wazuh dashboard dependencies
apt:
name: [
'libnss3-dev', 'fonts-liberation', 'libfontconfig1'
]
state: present
- name: Install Wazuh dashboard
apt:
name: "wazuh-dashboard={{ dashboard_version }}-*"
state: present
update_cache: yes
register: install
tags:
- install