blob: 4330c918e44b2d9b21ef668ace9946909ee6bd0d (
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
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
96
97
98
99
100
101
102
103
104
|
#!/sbin/runscript
# Distributed under the terms of the GNU General Public License, v2 or later
VARDIR="/var/lib/namecoin"
CONFFILE="${VARDIR}/.namecoin/bitcoin.conf"
depend() {
need net
}
checkconfig() {
if [[ "${NAMECOIN_USER}" == "" ]] ; then
eerror "Please edit /etc/conf.d/namecoind"
eerror "A user must be specified to run namecoind as that user."
eerror "Modify USER to your needs (you may also add a group after a colon)"
return 1
fi
if ! `getent passwd | cut -d ':' -f 1 | grep $( echo "${NAMECOIN_USER}" | cut -d ':' -f 1 ) -sq` ; then
eerror "Please edit /etc/conf.d/namecoind"
eerror "Specified user must exist!"
return 1
fi
if `echo "${NAMECOIN_USER}" | grep ':' -sq` ; then
if ! `cut -d ':' -f 1 /etc/group | grep $( echo "${NAMECOIN_USER}" | cut -d ':' -f 2 ) -sq` ; then
eerror "Please edit /etc/conf.d/namecoind"
eerror "Specified group must exist!"
return 1
fi
fi
if ! grep -q '^rpcpassword=' "${CONFFILE}"; then
eerror "Please edit `readlink -f ${CONFFILE}`"
eerror "There must be at least a line assigning rpcpassword=something-secure"
return 1
fi
if ! stat -Lc '%a' "${CONFFILE}" | grep -q '^[4567]00$'; then
eerror "`readlink -f ${CONFFILE}` should not be readable by other users"
return 1
fi
return 0
}
start() {
checkconfig || return 1
ebegin "Starting Namecoind daemon"
pkg-config openrc
if [ $? = 0 ]; then
start_openrc
else
start_baselayout
fi
}
stop() {
ebegin "Stopping Namecoin daemon"
pkg-config openrc
if [ $? = 0 ]; then
stop_openrc
else
stop_baselayout
fi
}
start_openrc() {
start-stop-daemon \
--start --user "${NAMECOIN_USER}" --name namecoind \
--pidfile /var/run/namecoind.pid --make-pidfile \
--env HOME="${VARDIR}" --exec /usr/bin/namecoind \
--nicelevel "${NICELEVEL}" \
--background \
--wait 2000 \
-- ${NAMECOIN_OPTS}
eend $?
}
stop_openrc() {
start-stop-daemon --stop --user "${NAMECOIN_USER}" \
--name namecoind --pidfile /var/run/namecoind.pid \
--wait 30000 \
--progress
eend $?
}
start_baselayout() {
start-stop-daemon \
--start --user "${NAMECOIN_USER}" --name namecoind \
--pidfile /var/run/namecoind.pid --make-pidfile \
--env HOME="${VARDIR}" --exec /usr/bin/namecoind \
--chuid "${NAMECOIN_USER}" \
--nicelevel "${NICELEVEL}" \
--background \
-- ${NAMECOIN_OPTS}
eend $?
}
stop_baselayout() {
start-stop-daemon \
--stop \
--user "${NAMECOIN_USER}" \
--name namecoind \
--pidfile /var/run/namecoind.pid
eend $?
}
|