mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-16 02:03:09 +02:00
14 lines
404 B
YAML
14 lines
404 B
YAML
![]() |
---
|
||
|
- 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 }}/{{ ansible_distribution | lower }} {{ ansible_distribution_release }} main
|
||
|
filename: zabbix
|
||
|
tags: repo
|