From d83c9a50fa29f51e3195929c62f4946cab8c50c5 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Fri, 15 Oct 2021 18:24:52 +0200 Subject: prometheus: fix smartmon textfile collector --- .../node/tasks/textfile_collector_smartmon.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 roles/monitoring/prometheus/exporter/node/tasks/textfile_collector_smartmon.yml (limited to 'roles/monitoring/prometheus/exporter/node/tasks/textfile_collector_smartmon.yml') diff --git a/roles/monitoring/prometheus/exporter/node/tasks/textfile_collector_smartmon.yml b/roles/monitoring/prometheus/exporter/node/tasks/textfile_collector_smartmon.yml new file mode 100644 index 00000000..8da763cd --- /dev/null +++ b/roles/monitoring/prometheus/exporter/node/tasks/textfile_collector_smartmon.yml @@ -0,0 +1,21 @@ +--- +- name: install smartmontools + apt: + name: smartmontools + state: present + +- name: make sure smartd service is stopped and masked + when: (ansible_distribution == 'Debian' and (ansible_distribution_major_version | int) < 11) or (ansible_distribution == 'Ubuntu' and (ansible_distribution_major_version | int) < 20) + 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 -- cgit v1.2.3