You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
759 B
28 lines
759 B
10 years ago
|
# /etc/conf.d/bitcoind: config file for /etc/init.d/bitcoind
|
||
|
|
||
|
# Config file location
|
||
|
#BITCOIND_CONFIGFILE="/etc/bitcoin/bitcoin.conf"
|
||
|
|
||
|
# What directory to write pidfile to? (created and owned by $BITCOIND_USER)
|
||
|
#BITCOIND_PIDDIR="/var/run/bitcoind"
|
||
|
|
||
|
# What filename to give the pidfile
|
||
|
#BITCOIND_PIDFILE="${BITCOIND_PIDDIR}/bitcoind.pid"
|
||
|
|
||
|
# Where to write bitcoind data (be mindful that the blockchain is large)
|
||
|
#BITCOIND_DATADIR="/var/lib/bitcoind"
|
||
|
|
||
|
# User and group to own bitcoind process
|
||
|
#BITCOIND_USER="bitcoin"
|
||
|
#BITCOIND_GROUP="bitcoin"
|
||
|
|
||
|
# Path to bitcoind executable
|
||
|
#BITCOIND_BIN="/usr/bin/bitcoind"
|
||
|
|
||
|
# Nice value to run bitcoind under
|
||
|
#BITCOIND_NICE=0
|
||
|
|
||
|
# Additional options (avoid -conf and -datadir, use flags above)
|
||
|
BITCOIND_OPTS="-disablewallet"
|
||
|
|