aboutsummaryrefslogtreecommitdiff
path: root/roles/icinga2/tasks/icinga.yml
blob: ec6fe1e7ead3c76922d56088f87c2ff35b01f31c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
- name: Install icinga2.conf
  template:
    src: icinga2.conf.j2
    dest: /etc/icinga2/icinga2.conf
    owner: nagios
    group: nagios
  become: yes
  notify: Restart icinga

- name: IDO Database
  mysql_db:
    name: ido
    state: present
    login_unix_socket: /var/run/mysqld/mysqld.sock
  become: yes
  register: ido_db

- name: IDO Database schema import
  mysql_db:
    name: ido
    target: '/usr/share/icinga2-ido-mysql/schema/mysql.sql'
    state: import
    login_unix_socket: /var/run/mysqld/mysqld.sock
  become: yes
  when: ido_db.changed

- name: IDO Database user
  mysql_user:
    name: icinga
    host: 'localhost'
    state: present
    priv: 'ido.*:ALL'
    password: '{{ icinga_ido_db_pw }}'
    login_unix_socket: /var/run/mysqld/mysqld.sock
  become: yes

- name: Install extra config files
  template:
    src: '{{ item }}.j2'
    dest: '/etc/icinga2/{{ item }}'
    owner: nagios
    group: nagios
  become: yes
  notify: Restart icinga
  loop:
    - ido-mysql.conf
    - api_users.conf

- name: Enable features
  file:
    state: link
    path: '/etc/icinga2/features-available/api.con'
    src: '../features-available/api.conf'
    owner: nagios
    group: nagios
  become: yes
  notify: Restart icinga