blob: 8c8178d6394e30af0d66cbafca7194ea854c3d5f (
plain) (
blame)
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
|
# /etc/conf.d/discoind: config file for /etc/init.d/discoind
# Config file location
#DOGECOIND_CONFIGFILE="/etc/discoin/discoin.conf"
# What directory to write pidfile to? (created and owned by $DOGECOIND_USER)
#DOGECOIND_PIDDIR="/var/run/discoind"
# What filename to give the pidfile
#DOGECOIND_PIDFILE="${DOGECOIND_PIDDIR}/discoind.pid"
# Where to write discoind data (be mindful that the blockchain is large)
#DOGECOIND_DATADIR="/var/lib/discoind"
# User and group to own discoind process
#DOGECOIND_USER="discoin"
#DOGECOIND_GROUP="discoin"
# Path to discoind executable
#DOGECOIND_BIN="/usr/bin/discoind"
# Nice value to run discoind under
#DOGECOIND_NICE=0
# Additional options (avoid -conf and -datadir, use flags above)
DOGECOIND_OPTS="-disablewallet"
# The timeout in seconds OpenRC will wait for discoind to terminate
# after a SIGTERM has been raised.
# Note that this will be mapped as argument to start-stop-daemon's
# '--retry' option, which means you can specify a retry schedule
# here. For more information see man 8 start-stop-daemon.
DOGECOIND_SIGTERM_TIMEOUT=60
|