bitcoind.openrcconf raw

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