Fix quotation
This commit is contained in:
parent
00bdc94223
commit
605a8406de
1 changed files with 3 additions and 3 deletions
|
@ -22,7 +22,7 @@
|
|||
src: munin_configuration
|
||||
dest: /etc/munin/plugin-conf.d/yyy-apache
|
||||
mode: 0644
|
||||
when: munin in ansible_facts.packages
|
||||
when: "'munin' in ansible_facts.packages"
|
||||
notify: restart munin-node
|
||||
|
||||
- name: "Monitoring | Enable Munin plugins"
|
||||
|
@ -34,7 +34,7 @@
|
|||
- apache_accesses
|
||||
- apache_processes
|
||||
- apache_volume
|
||||
when: munin in ansible_facts.packages
|
||||
when: "'munin' in ansible_facts.packages"
|
||||
notify: restart munin-node
|
||||
|
||||
- name: "Monitoring | Enable Monit configuration"
|
||||
|
@ -42,5 +42,5 @@
|
|||
src: monit.conf
|
||||
dest: /etc/monit/conf-enabled/apache2
|
||||
mode: 0644
|
||||
when: monit in ansible_facts.packages
|
||||
when: "'monit' in ansible_facts.packages"
|
||||
notify: reload monit
|
||||
|
|
Loading…
Reference in a new issue