19 lines
409 B
YAML
19 lines
409 B
YAML
- name: hddtemp installieren
|
|
become: yes
|
|
apt:
|
|
name: hddtemp
|
|
state: present
|
|
|
|
- name: hddtemp kopieren
|
|
become: yes
|
|
template:
|
|
src: "hddtemp"
|
|
dest: "/etc/default/hddtemp"
|
|
notify: restart_hddtemp
|
|
|
|
- name: hddtemp.conf kopieren
|
|
become: yes
|
|
template:
|
|
src: "hddtemp.conf"
|
|
dest: "/etc/telegraf/telegraf.d/hddtemp.conf"
|
|
notify: restart_telegraf
|