mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 06:47:13 +08:00
61 lines
1.3 KiB
Plaintext
61 lines
1.3 KiB
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
. /etc/rc.conf
|
||
|
. /etc/rc.d/functions
|
||
|
|
||
|
case "$1" in
|
||
|
start)
|
||
|
if [ -x /etc/rc.d/acpid ]; then
|
||
|
ck_daemon acpid && /etc/rc.d/acpid start
|
||
|
fi
|
||
|
stat_busy "Starting laptop-mode"
|
||
|
[ ! -d /var/run/laptop-mode-tools ] && install -d /var/run/laptop-mode-tools
|
||
|
touch /var/run/laptop-mode-tools/enabled
|
||
|
/usr/sbin/laptop_mode auto >/dev/null 2>&1
|
||
|
if [ $? -gt 0 ]; then
|
||
|
stat_fail
|
||
|
else
|
||
|
add_daemon laptop-mode
|
||
|
stat_done
|
||
|
fi
|
||
|
;;
|
||
|
stop)
|
||
|
stat_busy "Stopping laptop-mode"
|
||
|
rm -f /var/run/laptop-mode-tools/enabled
|
||
|
/usr/sbin/laptop_mode stop >/dev/null 2>&1
|
||
|
if [ $? -gt 0 ]; then
|
||
|
stat_fail
|
||
|
else
|
||
|
rm_daemon laptop-mode
|
||
|
stat_done
|
||
|
fi
|
||
|
;;
|
||
|
restart)
|
||
|
stat_busy "Restarting laptop-mode"
|
||
|
rm -f /var/run/laptop-mode-tools/enabled
|
||
|
/usr/sbin/laptop_mode stop >/dev/null 2>&1
|
||
|
|
||
|
if [ $? -gt 0 ]; then
|
||
|
stat_fail
|
||
|
rm_daemon laptop-mode
|
||
|
else
|
||
|
rm -f /var/run/laptop-mode-tools/*
|
||
|
touch /var/run/laptop-mode-tools/enabled
|
||
|
/usr/sbin/laptop_mode auto force >/dev/null 2>&1
|
||
|
if [ $? -gt 0 ]; then
|
||
|
stat_fail
|
||
|
rm_daemon laptop-mode
|
||
|
else
|
||
|
stat_done
|
||
|
fi
|
||
|
fi
|
||
|
;;
|
||
|
status)
|
||
|
/usr/sbin/laptop_mode status
|
||
|
;;
|
||
|
*)
|
||
|
echo "Usage: $0 {stop|start|restart|status}"
|
||
|
;;
|
||
|
esac
|
||
|
exit 0
|