third fix for pw generation

This commit is contained in:
Jeffrey Paul 2019-09-18 14:20:35 -07:00
parent b9482d0aaf
commit 6eeae74519
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
export HOME="/var/lib/bitcoind"
# gen random pw for rpc server
RANDOMPW=$(tr -dc 'a-f0-9' < /dev/urandom | head -c20)
RANDOMPW=$(openssl rand -hex 20)
cat <<EOF > $HOME/bitcoin.conf
rpcuser=${BITCOIND_RPCUSER:-rpcuser}