|
@@ -1,10 +1,10 @@
|
|
- name: Install munin packages
|
|
- name: Install munin packages
|
|
action: ${ansible_pkg_mgr} pkg=munin state=installed update_cache=yes
|
|
action: ${ansible_pkg_mgr} pkg=munin state=installed update_cache=yes
|
|
- when_boolean: ${with_munin}
|
|
|
|
|
|
+ when: ${with_munin}
|
|
|
|
|
|
- name: Install munin configuration
|
|
- name: Install munin configuration
|
|
action: template src=munin/munin.conf.j2 dest=/etc/munin/munin.conf owner=root group=root mode=0644
|
|
action: template src=munin/munin.conf.j2 dest=/etc/munin/munin.conf owner=root group=root mode=0644
|
|
- when_boolean: ${with_munin}
|
|
|
|
|
|
+ when: ${with_munin}
|
|
|
|
|
|
- name: Install munin-node packages
|
|
- name: Install munin-node packages
|
|
action: ${ansible_pkg_mgr} pkg=${item} state=installed update_cache=yes
|
|
action: ${ansible_pkg_mgr} pkg=${item} state=installed update_cache=yes
|
|
@@ -16,57 +16,57 @@
|
|
- libdbd-pg-perl
|
|
- libdbd-pg-perl
|
|
- libdbd-mysql-perl
|
|
- libdbd-mysql-perl
|
|
- liblwp-useragent-determined-perl
|
|
- liblwp-useragent-determined-perl
|
|
- when_boolean: ${with_munin_node}
|
|
|
|
|
|
+ when: ${with_munin_node}
|
|
|
|
|
|
- name: Create need directories for munin-node configuration
|
|
- name: Create need directories for munin-node configuration
|
|
action: file path=/etc/munin/${item} state=directory owner=root group=root mode=0755
|
|
action: file path=/etc/munin/${item} state=directory owner=root group=root mode=0755
|
|
with_items:
|
|
with_items:
|
|
- plugins
|
|
- plugins
|
|
- plugin-conf.d
|
|
- plugin-conf.d
|
|
- when_boolean: ${with_munin_node}
|
|
|
|
|
|
+ when: ${with_munin_node}
|
|
|
|
|
|
- name: Install munin node configuration
|
|
- name: Install munin node configuration
|
|
action: template src=munin/munin-node.conf.j2 dest=/etc/munin/munin-node.conf owner=root group=root mode=0644
|
|
action: template src=munin/munin-node.conf.j2 dest=/etc/munin/munin-node.conf owner=root group=root mode=0644
|
|
notify:
|
|
notify:
|
|
- Restart munin-node
|
|
- Restart munin-node
|
|
- when_boolean: ${with_munin_node}
|
|
|
|
|
|
+ when: ${with_munin_node}
|
|
|
|
|
|
- name: Install munin node plugins configuration
|
|
- name: Install munin node plugins configuration
|
|
action: template src=munin/munin-node.conf.plugins.j2 dest=/etc/munin/plugin-conf.d/munin-node owner=root group=root mode=0644
|
|
action: template src=munin/munin-node.conf.plugins.j2 dest=/etc/munin/plugin-conf.d/munin-node owner=root group=root mode=0644
|
|
notify:
|
|
notify:
|
|
- Restart munin-node
|
|
- Restart munin-node
|
|
- when_boolean: ${with_munin_node}
|
|
|
|
|
|
+ when: ${with_munin_node}
|
|
|
|
|
|
- name: Autoconfigure munin-node plugins
|
|
- name: Autoconfigure munin-node plugins
|
|
action: munin_node_autoconf families=auto,manual,contrib excludes=apc_nis,apt,apt_all,port_,ipmi_fans,ipmi_power,ipmi_temp,ntp_,ircu,ntp_kernel_err,ntp_kernel_pll_freq,ntp_kernel_pll_off,ntp_offset,ntp_states
|
|
action: munin_node_autoconf families=auto,manual,contrib excludes=apc_nis,apt,apt_all,port_,ipmi_fans,ipmi_power,ipmi_temp,ntp_,ircu,ntp_kernel_err,ntp_kernel_pll_freq,ntp_kernel_pll_off,ntp_offset,ntp_states
|
|
notify:
|
|
notify:
|
|
- Restart munin-node
|
|
- Restart munin-node
|
|
- when_boolean: ${with_munin_node}
|
|
|
|
|
|
+ when: ${with_munin_node}
|
|
|
|
|
|
- name: Install nginx virtual host for munin (sites-available)
|
|
- name: Install nginx virtual host for munin (sites-available)
|
|
action: template src=munin/nginx_vhost.j2 dest=/etc/nginx/sites-available/munin owner=root group=root mode=0644
|
|
action: template src=munin/nginx_vhost.j2 dest=/etc/nginx/sites-available/munin owner=root group=root mode=0644
|
|
notify:
|
|
notify:
|
|
- Reload nginx for munin
|
|
- Reload nginx for munin
|
|
- when_boolean: ${with_munin} and ${with_nginx}
|
|
|
|
|
|
+ when: ${with_munin} and ${with_nginx}
|
|
|
|
|
|
- name: Install nginx virtual host for munin (sites-enabled)
|
|
- name: Install nginx virtual host for munin (sites-enabled)
|
|
action: file src=/etc/nginx/sites-available/munin path=/etc/nginx/sites-enabled/munin state=link
|
|
action: file src=/etc/nginx/sites-available/munin path=/etc/nginx/sites-enabled/munin state=link
|
|
notify:
|
|
notify:
|
|
- Reload nginx for munin
|
|
- Reload nginx for munin
|
|
- when_boolean: ${with_munin} and ${with_nginx}
|
|
|
|
|
|
+ when: ${with_munin} and ${with_nginx}
|
|
|
|
|
|
- name: Install apache2 virtual host for munin (sites-available)
|
|
- name: Install apache2 virtual host for munin (sites-available)
|
|
action: template src=munin/apache2_vhost.j2 dest=/etc/apache2/sites-available/munin owner=root group=root mode=0644
|
|
action: template src=munin/apache2_vhost.j2 dest=/etc/apache2/sites-available/munin owner=root group=root mode=0644
|
|
notify:
|
|
notify:
|
|
- Reload apache2 for munin
|
|
- Reload apache2 for munin
|
|
- when_boolean: ${with_munin} and ${with_apache2}
|
|
|
|
|
|
+ when: ${with_munin} and ${with_apache2}
|
|
|
|
|
|
- name: Install apache2 virtual host for munin (sites-enabled)
|
|
- name: Install apache2 virtual host for munin (sites-enabled)
|
|
action: file src=/etc/apache2/sites-available/munin path=/etc/apache2/sites-enabled/munin state=link
|
|
action: file src=/etc/apache2/sites-available/munin path=/etc/apache2/sites-enabled/munin state=link
|
|
notify:
|
|
notify:
|
|
- Reload apache2 for munin
|
|
- Reload apache2 for munin
|
|
- when_boolean: ${with_munin} and ${with_apache2}
|
|
|
|
|
|
+ when: ${with_munin} and ${with_apache2}
|
|
|
|
|
|
- name: Ensure munin-node is running
|
|
- name: Ensure munin-node is running
|
|
action: service name=munin-node state=started
|
|
action: service name=munin-node state=started
|
|
- when_boolean: ${with_munin_node}
|
|
|
|
|
|
+ when: ${with_munin_node}
|