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

Up: drupal to 7.26.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Jan 27 05:44:38 2014 +0000 (2014-01-27)
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