2020-08-18 11:57:53 +02:00
|
|
|
#Blockdevice/Festplatten muessen haendisch in "templates" eingetragen werden
|
|
|
|
- name: smartmontools installieren
|
|
|
|
become: yes
|
2021-01-02 10:30:54 +01:00
|
|
|
ansible.builtin.package:
|
2020-08-18 11:57:53 +02:00
|
|
|
name: smartmontools
|
|
|
|
state: present
|
|
|
|
|
|
|
|
- name: smartmontools kopieren
|
|
|
|
become: yes
|
2020-11-21 19:41:19 +01:00
|
|
|
ansible.builtin.template:
|
2020-08-18 11:57:53 +02:00
|
|
|
src: "smartmontools"
|
|
|
|
dest: "/etc/default/smartmontools"
|
|
|
|
notify: smartmontools_starten_aktivieren
|
|
|
|
|
|
|
|
- name: smartd.conf kopieren
|
|
|
|
become: yes
|
2020-11-21 19:41:19 +01:00
|
|
|
ansible.builtin.template:
|
2020-08-18 11:57:53 +02:00
|
|
|
src: "smartd.conf"
|
|
|
|
dest: "/etc/smartd.conf"
|
|
|
|
notify: smartmontools_starten_aktivieren
|
|
|
|
|
|
|
|
- name: Ordner "smart" erstellen
|
|
|
|
become: yes
|
2020-11-21 19:41:19 +01:00
|
|
|
ansible.builtin.file:
|
2020-08-18 11:57:53 +02:00
|
|
|
path: "/root/smart"
|
|
|
|
state: directory
|
|
|
|
|
|
|
|
- name: smartctl_mail.sh kopieren
|
|
|
|
become: yes
|
2020-11-21 19:41:19 +01:00
|
|
|
ansible.builtin.template:
|
2020-08-18 11:57:53 +02:00
|
|
|
src: "smartctl_mail.sh"
|
|
|
|
dest: "/root/smart/smartctl_mail.sh"
|
|
|
|
mode: a+x
|
|
|
|
|
|
|
|
- name: smart_status.sh kopieren
|
|
|
|
become: yes
|
2020-11-21 19:41:19 +01:00
|
|
|
ansible.builtin.template:
|
2020-08-18 11:57:53 +02:00
|
|
|
src: "smart_status.sh"
|
|
|
|
dest: "/usr/local/bin/smart_status.sh"
|
|
|
|
mode: a+x
|
|
|
|
|
|
|
|
# smartctl output als mail
|
|
|
|
- name: cronjob fuer smartctl-mail
|
|
|
|
become: yes
|
2020-11-21 19:41:19 +01:00
|
|
|
ansible.builtin.cron:
|
2020-08-18 11:57:53 +02:00
|
|
|
name: smart-mail
|
|
|
|
state: present
|
|
|
|
job: "/root/smart/smartctl_mail.sh"
|
|
|
|
minute: "{{ smart_smartctlmail_cron_minutes }}"
|
|
|
|
hour: "{{ smart_smartctlmail_cron_hours }}"
|
|
|
|
weekday: "{{ smart_smartctlmail_cron_weekday }}"
|