mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-16 10:13:26 +02:00
16 lines
410 B
YAML
16 lines
410 B
YAML
---
|
|
- name: Deploy Zabbix Proxy configuration
|
|
template: src=zabbix_proxy.conf.j2 dest=/etc/zabbix/zabbix_proxy.conf
|
|
notify: restart zabbix-proxy
|
|
tags: zabbix
|
|
|
|
- name: Install server scripts
|
|
copy: src=../zabbix_server/files/scripts/ dest=/var/lib/zabbix/bin/
|
|
tags: zabbix
|
|
|
|
- name: Make scripts executable
|
|
file: path=/var/lib/zabbix/bin/{{ item }} mode=755
|
|
loop:
|
|
- check_cert.pl
|
|
tags: zabbix
|