Merge pull request #769 from wazuh/1520-dashboard-dependencies
Dashboard dependencies
This commit is contained in:
commit
3cceb416b5
@ -13,6 +13,13 @@
|
|||||||
state: present
|
state: present
|
||||||
update_cache: yes
|
update_cache: yes
|
||||||
|
|
||||||
|
- name: Install Wazuh dashboard dependencies
|
||||||
|
apt:
|
||||||
|
name: [
|
||||||
|
'libnss3-dev', 'fonts-liberation', 'libfontconfig1'
|
||||||
|
]
|
||||||
|
state: present
|
||||||
|
|
||||||
- name: Install Wazuh dashboard
|
- name: Install Wazuh dashboard
|
||||||
apt:
|
apt:
|
||||||
name: "wazuh-dashboard={{ dashboard_version }}-*"
|
name: "wazuh-dashboard={{ dashboard_version }}-*"
|
||||||
|
|||||||
@ -10,6 +10,14 @@
|
|||||||
gpgkey: "{{ wazuh_repo.gpg }}"
|
gpgkey: "{{ wazuh_repo.gpg }}"
|
||||||
gpgcheck: true
|
gpgcheck: true
|
||||||
|
|
||||||
|
- name: Install Wazuh dashboard dependencies
|
||||||
|
yum:
|
||||||
|
name: [
|
||||||
|
'libnss3.so', 'xorg-x11-fonts-100dpi', 'xorg-x11-fonts-75dpi', 'xorg-x11-utils', 'xorg-x11-fonts-cyrillic', 'xorg-x11-fonts-Type1', 'xorg-x11-fonts-misc', 'fontconfig', 'freetype'
|
||||||
|
]
|
||||||
|
state: present
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
- name: Install Wazuh dashboard
|
- name: Install Wazuh dashboard
|
||||||
package:
|
package:
|
||||||
name: "wazuh-dashboard-{{ dashboard_version }}"
|
name: "wazuh-dashboard-{{ dashboard_version }}"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user