-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwxPi
executable file
·72 lines (64 loc) · 1.33 KB
/
wxPi
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
#!/bin/sh
### BEGIN INIT INFO
# Provides: wxPi
# Required-Start: $syslog
# Required-Stop: $syslog
# Default-Start: 2 3 4 5
# Default-Stop:
# Short-Description: Start the wxPi weather logging software
### END INIT INFO
. /lib/lsb/init-functions
WXPI_PATH = your_path_here
DAEMON=$WXPI_PATH/wxPi.py
PIDFILE=/var/run/wxPi.pid
#test -x $DAEMON || exit 5
LOCKFILE=/var/lock/wxPi
lock_can() {
if [ -x /usr/bin/lockfile-create ]; then
lockfile-create $LOCKFILE
lockfile-touch $LOCKFILE &
LOCKTOUCHPID="$!"
fi
}
unlock_can() {
if [ -x /usr/bin/lockfile-create ] ; then
kill $LOCKTOUCHPID
lockfile-remove $LOCKFILE
fi
}
case $1 in
start)
log_daemon_msg "Starting wxPi" "wxPi.py"
lock_can
start-stop-daemon --start --quiet --oknodo --pidfile $PIDFILE --startas $DAEMON -- -p $PIDFILE
status=$?
unlock_can
log_end_msg $status
;;
stop)
log_daemon_msg "Stopping wxPi" "wxPi.py"
start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE
log_end_msg $?
rm -f $PIDFILE
;;
restart|force-reload)
$0 stop && sleep 2 && $0 start
;;
try-restart)
if $0 status >/dev/null; then
$0 restart
else
exit 0
fi
;;
reload)
exit 3
;;
status)
status_of_proc -p $PIDFILE $DAEMON "wxPi"
;;
*)
echo "Usage: $0 {start|stop|restart|try-restart|force-reload|status}"
exit 2
;;
esac