我安装了风扇控制服务 (fancontrol)。它运行正常,但挂起时出现问题:当我唤醒计算机时,风扇会旋转得非常快,因为风扇控制服务已停止,所以我必须运行命令:
sudo service fancontrol restart
之后就没问题了。所以我想在恢复计算机后运行一个命令(或脚本),它将自动重新启动此服务。
我编写了一个可执行脚本,但是它不起作用......
#!/bin/sh
# Resume fancontrol
case $1/$2 in
post/*)
service fancontrol restart
;;
esac
(位置:/lib/systemd/system-sleep)
我的脚本出了什么问题?