You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
376 B
13 lines
376 B
---
|
|
- name: Add Zabbix repo key
|
|
apt_key:
|
|
url: https://repo.zabbix.com/zabbix-official-repo.key
|
|
environment:
|
|
https_proxy: "{{ system_proxy | default('') }}"
|
|
tags: repo
|
|
|
|
- name: Add Zabbix repo
|
|
apt_repository:
|
|
repo: deb http://repo.zabbix.com/zabbix/{{ zabbix_major_version }}/debian {{ ansible_distribution_release }} main
|
|
filename: zabbix
|
|
tags: repo
|
|
|