blob: d28e2d4ff6b25e8e2f662a25dbf0acb4a52f6d0b (
plain)
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
|
#!/bin/sh -e
### BEGIN INIT INFO
# Provides: torouterui
# Required-Start: $local_fs $remote_fs $network
# Required-Stop: $local_fs $remote_fs $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: torouter configuration web interface
### END INIT INFO
PATH="/sbin:/bin:/usr/sbin:/usr/bin"
DAEMON=/usr/bin/torouterui
ARGS="--host 0.0.0.0 --port 80 --lanif eth1 --wanif eth0 --wifiif uap0"
PIDFILE=/var/run/torouterui.pid
[ -x "$DAEMON" ] || exit 0
. /lib/lsb/init-functions
case "$1" in
start)
log_daemon_msg "Starting torouter Web Configuration Interface" "torouterui"
start-stop-daemon --start -b -m --pidfile $PIDFILE --exec $DAEMON -- $ARGS
log_end_msg 0
;;
restart|force-reload)
$0 stop
$0 start
;;
stop)
log_daemon_msg "Stopping torouter Web Configuration Interface" "torouterui"
start-stop-daemon --stop --pidfile $PIDFILE --oknodo
log_end_msg 0
;;
status)
status_of_proc $DAEMON torouterui
;;
*)
echo "Usage: /etc/init.d/torouterui {start|stop|status}"
exit 2
;;
esac
exit 0
|