blob: 9bdeea089320a6bc0367fe7dcadf6a028788ba71 (
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
|
#!/sbin/runscript
# Namecoin init.d file for Alpine Linux.
name=namecoind
daemon=/usr/bin/$name
config=/etc/namecoin.conf
user=namecoin
group=namecoin
## supercedes datadir set in $config ##
datadir=/var/lib/namecoin
pidfile=/var/run/namecoin/$name.pid
depend() {
need net
after logger firewall
}
start() {
ebegin "Starting ${name}"
# enforce permissions
checkpath -q -d ${pidfile%/*} -o ${user}:${group}
checkpath -q -d ${datadir} -m 0700 -o ${user}:${group}
checkpath -q -f ${config} -m 0600 -o ${user}:${group}
start-stop-daemon --start --quiet \
--pidfile ${pidfile} \
--user ${user}:${group} \
--exec ${daemon} -- -conf=${config} -datadir=${datadir} -pid=${pidfile}
eend $?
}
stop() {
ebegin "Stopping ${name}"
start-stop-daemon --stop --quiet \
--pidfile ${pidfile} \
--exec ${daemon}
eend $?
}
|