-
Notifications
You must be signed in to change notification settings - Fork 7
/
pommed.init
executable file
·83 lines (75 loc) · 1.63 KB
/
pommed.init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#! /bin/sh
#
### BEGIN INIT INFO
# Provides: pommed
# Required-Start: $syslog $local_fs
# Required-Stop: $syslog $local_fs
# Should-Start: dbus
# Should-Stop:
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Apple laptops hotkeys event handler
# Description: pommed handles the hotkeys found on the Apple MacBook Pro
# and MacBook laptops and adjusts the LCD backlight, sound
# volume, keyboard backlight or ejects the CD-ROM drive
# accordingly.
### END INIT INFO
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/pommed
NAME=pommed
DESC="Apple laptops hotkeys events handler"
test -x $DAEMON || exit 0
set -e
pommed_start()
{
$DAEMON
}
pommed_stop()
{
pid=$(cat /var/run/pommed.pid)
kill $pid
rm -f /var/run/pommed.pid
}
case "$1" in
start)
echo -n "Starting $DESC: "
pommed_start
echo "$NAME."
;;
stop)
echo -n "Stopping $DESC: "
if [ -f /var/run/pommed.pid ]; then
pommed_stop
echo "$NAME."
else
echo "no PID file found; $NAME not running?"
fi
;;
force-reload)
# check wether $DAEMON is running. If so, restart
if [ -f /var/run/pommed.pid ]; then
$0 restart
else
echo "Reloading $DESC: $NAME not running."
exit 0
fi
;;
restart)
echo -n "Restarting $DESC: "
if [ -f /var/run/pommed.pid ]; then
pommed_stop
else
echo "no PID file found; $NAME not running?"
exit 0
fi
sleep 1
pommed_start
echo "$NAME."
;;
*)
N=/etc/init.d/$NAME
echo "Usage: $N {start|stop|restart|force-reload}" >&2
exit 1
;;
esac
exit 0