diff options
| author | Tomo Ueda <[email protected]> | 2021-09-02 12:22:51 -0700 |
|---|---|---|
| committer | Tomo Ueda <[email protected]> | 2021-09-02 12:22:51 -0700 |
| commit | 5dc1b84ed324b677ecb13d71fd38bcece1b54383 (patch) | |
| tree | 085f913c1181febcf2dc42cd11e086fd89f74d4c /contrib/init/dogecoind.conf | |
| parent | Merge pull request #2469 from patricklodder/1.14.4-fixate (diff) | |
| download | discoin-5dc1b84ed324b677ecb13d71fd38bcece1b54383.tar.xz discoin-5dc1b84ed324b677ecb13d71fd38bcece1b54383.zip | |
s/doge/dis/g
Diffstat (limited to 'contrib/init/dogecoind.conf')
| -rw-r--r-- | contrib/init/dogecoind.conf | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/contrib/init/dogecoind.conf b/contrib/init/dogecoind.conf index 8faf8bd58..036079935 100644 --- a/contrib/init/dogecoind.conf +++ b/contrib/init/dogecoind.conf @@ -3,14 +3,14 @@ description "Dogecoin Core Daemon" start on runlevel [2345] stop on starting rc RUNLEVEL=[016] -env DOGECOIND_BIN="/usr/bin/dogecoind" -env DOGECOIND_USER="dogecoin" -env DOGECOIND_GROUP="dogecoin" -env DOGECOIND_PIDDIR="/var/run/dogecoind" +env DOGECOIND_BIN="/usr/bin/discoind" +env DOGECOIND_USER="discoin" +env DOGECOIND_GROUP="discoin" +env DOGECOIND_PIDDIR="/var/run/discoind" # upstart can't handle variables constructed with other variables -env DOGECOIND_PIDFILE="/var/run/dogecoind/dogecoind.pid" -env DOGECOIND_CONFIGFILE="/etc/dogecoin/dogecoin.conf" -env DOGECOIND_DATADIR="/var/lib/dogecoind" +env DOGECOIND_PIDFILE="/var/run/discoind/discoind.pid" +env DOGECOIND_CONFIGFILE="/etc/discoin/discoin.conf" +env DOGECOIND_DATADIR="/var/lib/discoind" expect fork @@ -20,12 +20,12 @@ kill timeout 60 pre-start script # this will catch non-existent config files - # dogecoind will check and exit with this very warning, but it can do so + # discoind will check and exit with this very warning, but it can do so # long after forking, leaving upstart to think everything started fine. # since this is a commonly encountered case on install, just check and # warn here. if ! grep -qs '^rpcpassword=' "$DOGECOIND_CONFIGFILE" ; then - echo "ERROR: You must set a secure rpcpassword to run dogecoind." + echo "ERROR: You must set a secure rpcpassword to run discoind." echo "The setting must appear in $DOGECOIND_CONFIGFILE" echo echo "This password is security critical to securing wallets " |