diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2016-05-22 17:00:58 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2016-05-22 17:53:58 +0200 |
commit | 82d27fabc7becba1d1ee7c24b331522f2330cae6 (patch) | |
tree | e2c2ecccedfb5a340144f36605f07669b7d6059b /roles/common/tasks/munin-node.yml | |
parent | b331c2f99c1217c6f4208159c64ca6a5b0053bc7 (diff) |
Tunnel munin-update traffic through IPSec.
Diffstat (limited to 'roles/common/tasks/munin-node.yml')
-rw-r--r-- | roles/common/tasks/munin-node.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/common/tasks/munin-node.yml b/roles/common/tasks/munin-node.yml index e1a931a..d4f8d95 100644 --- a/roles/common/tasks/munin-node.yml +++ b/roles/common/tasks/munin-node.yml @@ -60,41 +60,41 @@ - irqstats - load - memory - netstat - ntp_kernel_err - ntp_kernel_pll_freq - ntp_kernel_pll_off - ntp_offset - open_files - open_inodes - processes - proc_pri - swap - threads - uptime - users - vmstat notify: - Restart munin-node -- name: Delete Munin plugins +- name: Delete unnecessary Munin plugins file: path=/etc/munin/plugins/{{ item }} state=absent register: r3 with_items: - http_loadtime - ip_255.255.255.255 - postfix_mailqueue - postfix_mailvolume notify: - Restart munin-node - name: Install 'if_' Munin wildcard plugin file: src=/usr/share/munin/plugins/{{ item.0 }}_ dest=/etc/munin/plugins/{{ item.0 }}_{{ item.1 }} owner=root group=root state=link force=yes register: r4 with_nested: - [ if, if_err ] - [ lo, "{{ ansible_default_ipv4.interface }}" ] |