1 # /etc/conf.d/limenkad: config file for /etc/init.d/limenkad
2 3 # Config file location
4 #LIMENKAD_CONFIGFILE="/etc/limenka/limenka.conf"
5 6 # What directory to write pidfile to? (created and owned by $LIMENKAD_USER)
7 #LIMENKAD_PIDDIR="/run/limenkad"
8 9 # What filename to give the pidfile
10 #LIMENKAD_PIDFILE="${LIMENKAD_PIDDIR}/${SVCNAME}.pid"
11 12 # Where to write limenkad data (be mindful that the blockchain is large)
13 #LIMENKAD_DATADIR="/var/lib/limenkad"
14 15 # Location to write debug log
16 #LIMENKAD_LOGDIR="/var/log/limenkad"
17 18 # User and group to own limenkad process
19 #LIMENKAD_USER="limenka"
20 #LIMENKAD_GROUP="limenka"
21 22 # Path to limenkad executable
23 #LIMENKAD_BIN="/usr/bin/limenkad"
24 25 # Nice value to run limenkad under
26 #LIMENKAD_NICE=0
27 28 # Additional options (avoid -conf and -datadir, use flags above)
29 #LIMENKAD_OPTS=""
30 31 # The timeout in seconds OpenRC will wait for limenkad to terminate
32 # after a SIGTERM has been raised.
33 # Note that this will be mapped as argument to start-stop-daemon's
34 # '--retry' option, which means you can specify a retry schedule
35 # here. For more information see man 8 start-stop-daemon.
36 LIMENKAD_SIGTERM_TIMEOUT=600
37