From 24442626c58dbe8ae6cf9dab91d9131a35ccb1b2 Mon Sep 17 00:00:00 2001 From: mike Date: Sun, 17 Aug 2025 20:19:16 +0000 Subject: [PATCH] Add fan_control.yaml.example Fan control config template --- fan_control.yaml.example | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 fan_control.yaml.example diff --git a/fan_control.yaml.example b/fan_control.yaml.example new file mode 100644 index 0000000..70f76c2 --- /dev/null +++ b/fan_control.yaml.example @@ -0,0 +1,31 @@ +general: + debug: false + interval: 60 + +hosts: + - name: MyLocalHost + hysteresis: 3 + temperatures: + - 32 + - 37 + - 55 + speeds: + - 9 + - 10 + - 15 + + #- name: MyRemoteHost + # remote_temperature_command: ssh myuser@myhost 'sysctl -a | grep -E "cpu\.[0-9]+\.temp" | grep -E -o "[0-9]+\.[0-9]+"' # must return a newline-delimited list of floats + # remote_ipmi_credentials: + # host: some.idrac.domain + # username: idrac-user + # password: idrac-password + # hysteresis: 0 + # temperatures: + # - 32 + # - 37 + # - 55 + # speeds: + # - 9 + # - 10 + # - 15 \ No newline at end of file