diff options
author | Adam Weiss <adam@signal11.com> | 2014-07-31 11:56:17 -0400 |
---|---|---|
committer | Adam Weiss <adam@signal11.com> | 2014-09-09 16:58:06 -0400 |
commit | 234bfbf6a5fcba37e510e9cb6c1f2a629cd0290e (patch) | |
tree | b9712699be08c4bcf48c669cbfc85c1c47bfba21 /contrib/init/bitcoind.openrcconf | |
parent | 8b4616bab3d6badabbcce7d73baf4c74bf2fd854 (diff) |
Add init scripts and docs for Upstart and OpenRC
Diffstat (limited to 'contrib/init/bitcoind.openrcconf')
-rw-r--r-- | contrib/init/bitcoind.openrcconf | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/contrib/init/bitcoind.openrcconf b/contrib/init/bitcoind.openrcconf new file mode 100644 index 0000000000..d8d7f58337 --- /dev/null +++ b/contrib/init/bitcoind.openrcconf @@ -0,0 +1,27 @@ +# /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" + |