48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
|
|
---
|
|
|
|
- name: Update cache
|
|
apt:
|
|
update_cache: yes
|
|
|
|
- name: Debian 9 (Stretch)
|
|
when: (ansible_facts['distribution'] == "Debian" and ansible_facts['distribution_major_version'] == "9")
|
|
block:
|
|
|
|
- name: Install Wazuh indexer dependencies
|
|
apt:
|
|
name: [
|
|
'unzip', 'wget', 'curl', 'apt-transport-https', software-properties-common
|
|
]
|
|
state: present
|
|
|
|
- name: Add Wazuh indexer repository
|
|
block:
|
|
- name: Add apt repository signing key
|
|
get_url:
|
|
url: "{{ wazuh_repo.gpg }}"
|
|
dest: "{{ wazuh_repo.path }}"
|
|
|
|
- name: Import Wazuh repository GPG key
|
|
command: "gpg --no-default-keyring --keyring gnupg-ring:{{ wazuh_repo.keyring_path }} --import {{ wazuh_repo.path }}"
|
|
args:
|
|
creates: "{{ wazuh_repo.keyring_path }}"
|
|
|
|
- name: Set permissions for Wazuh repository GPG key
|
|
file:
|
|
path: "{{ wazuh_repo.keyring_path }}"
|
|
mode: '0644'
|
|
|
|
- name: Add Wazuh indexer repository
|
|
apt_repository:
|
|
repo: "{{ wazuh_repo.apt }}"
|
|
state: present
|
|
filename: 'wazuh-indexer'
|
|
update_cache: yes
|
|
|
|
- name: Install Wazuh indexer
|
|
apt:
|
|
name: wazuh-indexer={{ indexer_version }}-1
|
|
state: present
|
|
register: install
|
|
tags: install |