homeserver/roles/mgrote.smart/tasks/main.yml

52 lines
1.3 KiB
YAML
Raw Normal View History

2020-08-18 11:57:53 +02:00
#Blockdevice/Festplatten muessen haendisch in "templates" eingetragen werden
- name: smartmontools installieren
become: yes
apt:
name: smartmontools
state: present
- name: smartmontools kopieren
become: yes
template:
src: "smartmontools"
dest: "/etc/default/smartmontools"
notify: smartmontools_starten_aktivieren
- name: smartd.conf kopieren
become: yes
template:
src: "smartd.conf"
dest: "/etc/smartd.conf"
notify: smartmontools_starten_aktivieren
- name: Ordner "smart" erstellen
become: yes
file:
path: "/root/smart"
state: directory
- name: smartctl_mail.sh kopieren
become: yes
template:
src: "smartctl_mail.sh"
dest: "/root/smart/smartctl_mail.sh"
mode: a+x
- name: smart_status.sh kopieren
become: yes
template:
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
cron:
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 }}"