mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-26 23:23:22 +02:00
9 lines
467 B
YAML
9 lines
467 B
YAML
---
|
|
|
|
- name: Handle zabbix-lld-all-graph timer
|
|
systemd:
|
|
name: zabbix-lld-all-graph.timer
|
|
state: "{{ (zabbix_lld_all_graph_api_user is defined and zabbix_lld_all_graph_api_pass is defined and zabbix_lld_all_graph_api_url is defined) | ternary('started','stopped') }}"
|
|
enabled: "{{ (zabbix_lld_all_graph_api_user is defined and zabbix_lld_all_graph_api_pass is defined and zabbix_lld_all_graph_api_url is defined) | ternary(True,False) }}"
|
|
tags: zabbix
|