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.
8 lines
467 B
8 lines
467 B
---
|
|
|
|
- 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
|
|
|