aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/munin/tasks/main.yml
blob: c2c654596286156f501f7dfc9b01392caaf6b938 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
- name: Install munin packages
  package:
    name:
      - munin
      - munin-node
      - spawn-fcgi
      # Plugin packages
      - libdbd-pg-perl
    state: present
  tags:
    - role::munin

- name: Template munin configuration file
  template:
    src: munin.conf.j2
    dest: /etc/munin/munin.conf
    owner: root
    group: root
    mode: "0444"
  tags:
    - role::munin