mynode/rootfs/standard/usr/bin/mynode_post_bitcoin.sh

18 lines
422 B
Bash
Raw Normal View History

#!/bin/bash
source /usr/share/mynode/mynode_config.sh
set -x
sleep 60s
# Give admin the ability to access the BTC cookie
cp -f /mnt/hdd/mynode/bitcoin/.cookie /home/admin/.bitcoin/.cookie
chown admin:admin /home/admin/.bitcoin/.cookie
2021-02-18 03:22:05 +00:00
# Make default wallets
bitcoin-cli createwallet joinmarket_wallet.dat > /dev/null 2>&1 || true
bitcoin-cli loadwallet joinmarket_wallet.dat > /dev/null 2>&1 || true
# Sync FS
sync