blob: c3e310cf9efef2e04b8794ce1300db2406698308 (
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
#DISCOIND_CONFIGFILE="/etc/discoin/discoin.conf"
# What directory to write pidfile to? (created and owned by $DISCOIND_USER)
#DISCOIND_PIDDIR="/var/run/discoind"
# What filename to give the pidfile
#DISCOIND_PIDFILE="${DISCOIND_PIDDIR}/discoind.pid"
# Where to write discoind data (be mindful that the blockchain is large)
#DISCOIND_DATADIR="/var/lib/discoind"
# User and group to own discoind process
#DISCOIND_USER="discoin"
#DISCOIND_GROUP="discoin"
# Path to discoind executable
#DISCOIND_BIN="/usr/bin/discoind"
# Nice value to run discoind under
#DISCOIND_NICE=0
# Additional options (avoid -conf and -datadir, use flags above)
DISCOIND_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.
DISCOIND_SIGTERM_TIMEOUT=60
|