mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-24 04:35:11 +02:00
5 lines
148 B
Bash
5 lines
148 B
Bash
#!/bin/sh
|
|
exec 2>&1
|
|
[ -r conf ] && . ./conf
|
|
[ ! -r ${CONF_FILE:-/etc/fancontrol} ] && exit 1
|
|
exec /usr/bin/fancontrol ${CONF_FILE:-/etc/fancontrol}
|