From 46f6f706d2a7a4f5db99ccba5b08c7f5f70c0356 Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Mon, 10 Jun 2019 20:20:07 +0200 Subject: [PATCH] ansible-playbooks/general#85 Linting [skip-ci] --- tasks/config.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tasks/config.yml b/tasks/config.yml index 6ab32ce..23e8dbc 100644 --- a/tasks/config.yml +++ b/tasks/config.yml @@ -5,7 +5,8 @@ template: src: zabbix_agentd.conf dest: /etc/zabbix/zabbix_agentd.conf - notify: "Restart Zabbix Agent" + notify: + - Restart Zabbix Agent - name: Copy TLS PSK File copy: @@ -15,11 +16,13 @@ group: root mode: 0600 when: zabbix_tls_psk_file != '' - notify: "Restart Zabbix Agent" + notify: + - Restart Zabbix Agent - name: Agent User Config template: src: userparameter.conf dest: /etc/zabbix/zabbix_agentd.d/userparameter_{{ item }}.conf with_items: '{{ zabbix_agent_userparameter }}' - notify: "Restart Zabbix Agent" + notify: + - Restart Zabbix Agent -- GitLab