-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcjdns.sh
executable file
·95 lines (86 loc) · 1.92 KB
/
cjdns.sh
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
84
85
86
87
88
89
90
91
92
93
94
95
#!/bin/sh -e
### BEGIN INIT INFO
# hyperboria.sh - An init script (/etc/init.d/) for cjdns
# Provides: cjdroute
# Required-Start: $remote_fs $network
# Required-Stop: $remote_fs $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Cjdns router
# Description: A routing engine designed for security, scalability, speed and ease of use.
# cjdns git repo: https://github.com/cjdelisle/cjdns/
### END INIT INFO
PROG="cjdroute"
GIT_PATH="/opt/cjdns"
PROG_PATH="/opt/cjdns"
CJDNS_CONFIG="/etc/cjdroute.conf"
CJDNS_USER="root" #see wiki about changing user to service user.
start() {
# Start it up with the user cjdns
if [ $(pgrep cjdroute | wc -l) != 0 ];
then
echo "Cjdroute is already running. Doing nothing..."
else
echo " * Starting cjdroute"
sudo -u $CJDNS_USER $PROG_PATH/$PROG < $CJDNS_CONFIG
fi
}
stop() {
if [ $(pgrep cjdroute | wc -l) != 2 ];
then
echo "Cjdns isn't running."
else
echo "Killing cjdroute"
killall cjdroute
fi
}
status() {
if [ $(pgrep cjdroute | wc -l) != 0 ];
then
echo "Cjdns is running"
else
echo "Cjdns is not running"
fi
}
update() {
cd $GIT_PATH
echo "Updating..."
git pull
./do
}
## Check to see if we are running as root first.
if [ "$(id -u)" != "0" ]; then
echo "This script must be run as root" 1>&2
exit 1
fi
case $1 in
start)
start
exit 0
;;
stop)
stop
exit 0
;;
reload|restart|force-reload)
stop
sleep 1
start
exit 0
;;
status)
status
exit 0
;;
update|upgrade)
update
stop
sleep 2
start
exit 0
;;
**)
echo "Usage: $0 (start|stop|restart|status|update)" 1>&2
exit 1
;;
esac