Update Debian repositories to use dynamic urls from default variables

This commit is contained in:
Jose M 2019-10-28 10:02:07 +01:00
parent 812fadd76b
commit 8a69a6e922
2 changed files with 8 additions and 5 deletions

View File

@ -22,13 +22,14 @@
- ansible_distribution_major_version | int == 14 - ansible_distribution_major_version | int == 14
- name: Debian/Ubuntu | Installing Wazuh repository key - name: Debian/Ubuntu | Installing Wazuh repository key
apt_key: url=https://packages.wazuh.com/key/GPG-KEY-WAZUH apt_key:
url: "{{ wazuh_agent_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 https://packages.wazuh.com/3.x/apt/ stable main' repo: "deb {{ wazuh_agent_config.repo.apt }}"
state: present state: present
update_cache: true update_cache: true

View File

@ -24,13 +24,14 @@
- ansible_distribution_major_version | int == 14 - ansible_distribution_major_version | int == 14
- name: Debian/Ubuntu | Installing Wazuh repository key - name: Debian/Ubuntu | Installing Wazuh repository key
apt_key: url=https://packages.wazuh.com/key/GPG-KEY-WAZUH apt_key:
url: "{{ wazuh_agent_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 https://packages.wazuh.com/3.x/apt/ stable main' repo: deb "{{ wazuh_agent_config.repo.apt }}"
state: present state: present
update_cache: true update_cache: true
changed_when: false changed_when: false
@ -49,7 +50,8 @@
- ansible_distribution_major_version | int == 14 - ansible_distribution_major_version | int == 14
- name: Debian/Ubuntu | Installing NodeJS repository key - name: Debian/Ubuntu | Installing NodeJS repository key
apt_key: url=https://deb.nodesource.com/gpgkey/nodesource.gpg.key apt_key:
url: https://deb.nodesource.com/gpgkey/nodesource.gpg.key
when: when:
- not (ansible_distribution == "Ubuntu" and ansible_distribution_major_version | int == 14) - not (ansible_distribution == "Ubuntu" and ansible_distribution_major_version | int == 14)