Fix wazuh manager variable typo related with repositories

This commit is contained in:
Jose M 2019-10-28 15:54:29 +01:00
parent 1978496611
commit 83d0de790a

View File

@ -25,13 +25,13 @@
- name: Debian/Ubuntu | Installing Wazuh repository key - name: Debian/Ubuntu | Installing Wazuh repository key
apt_key: apt_key:
url: "{{ wazuh_agent_config.repo.gpg }}" url: "{{ wazuh_manager_config.repo.gpg }}"
when: when:
- not (ansible_distribution == "Ubuntu" and ansible_distribution_major_version | int == 14) - not (ansible_distribution == "Ubuntu" and ansible_distribution_major_version | int == 14)
- name: Debian/Ubuntu | Add Wazuh repositories - name: Debian/Ubuntu | Add Wazuh repositories
apt_repository: apt_repository:
repo: deb "{{ wazuh_agent_config.repo.apt }}" repo: deb "{{ wazuh_manager_config.repo.apt }}"
state: present state: present
update_cache: true update_cache: true
changed_when: false changed_when: false