wok view laptop-mode-tools/stuff/laptop-mode.sh @ rev 17747

discount: fix TARBALL name
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 07 23:52:35 2015 +0100 (2015-03-07)
parents
children
line source
1 #!/bin/sh
2 #
3 # /etc/rc.d/laptop-mode: start/stop laptop-mode
4 #
6 case $1 in
7 start)
8 [ ! -d /var/run/laptop-mode-tools ] && install -d /var/run/laptop-mode-tools
9 touch /var/run/laptop-mode-tools/enabled
10 /usr/sbin/laptop_mode auto init >/dev/null 2>&1
11 ;;
12 stop)
13 rm -f /var/run/laptop-mode-tools/enabled
14 ;;
15 restart)
16 /usr/sbin/laptop_mode auto init force >/dev/null 2>&1
17 ;;
18 status)
19 /usr/sbin/laptop_mode status
20 ;;
21 *)
22 echo "usage: $0 [start|stop|restart|status]"
23 ;;
24 esac
26 # End of file