summaryrefslogtreecommitdiff
path: root/roles/monitoring/prometheus/exporter/node/tasks/textfile_collector_smartmon.yml
blob: 4825e552c8173cd5b025aca49502524d2249e1fe (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 smartmontools
  apt:
    name: smartmontools
    state: present

- name: make sure smartd service is stopped and masked
  when: (ansible_distribution == 'Debian' and (ansible_distribution_release | debian_release_compare('<', 'bullseye'))) or
        (ansible_distribution == 'Ubuntu' and (ansible_distribution_release | ubuntu_release_compare('<', 'focal')))
  systemd:
    name: smartd.service
    state: stopped
    masked: yes

- name: make sure smartmontools service is stopped and masked
  systemd:
    name: smartmontools.service
    state: stopped
    masked: yes

- name: install the smartmon textfile collector script
  include_tasks: textfile_collector_generic.yml