summaryrefslogtreecommitdiff
path: root/chaos-at-home/ch-telesto.yml
diff options
context:
space:
mode:
Diffstat (limited to 'chaos-at-home/ch-telesto.yml')
-rw-r--r--chaos-at-home/ch-telesto.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/chaos-at-home/ch-telesto.yml b/chaos-at-home/ch-telesto.yml
index 71569727..14f868ad 100644
--- a/chaos-at-home/ch-telesto.yml
+++ b/chaos-at-home/ch-telesto.yml
@@ -13,3 +13,31 @@
- role: core/admin-users
- role: streaming/blackmagic/desktopvideo
- role: streaming/blackmagic/mediaexpress
+ post_tasks:
+ - name: install lm-sensors and i7z
+ apt:
+ name:
+ - lm-sensors
+ - i7z
+
+ - name: load modules for lm-sensors
+ vars:
+ sensors_modules:
+ - coretemp
+ - w83627ehf
+ block:
+ - name: load special modules for lm-sensors
+ loop: "{{ sensors_modules }}"
+ modprobe:
+ name: "{{ item }}"
+ state: present
+
+ - name: make sure module is loaded on reboot
+ copy:
+ content: |
+ # Ansible managed
+
+ {% for module in sensors_modules %}
+ {{ module }}
+ {% endfor %}
+ dest: /etc/modules-load.d/sensors.conf