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

329 lines
9.5 KiB
Bash
Raw Normal View History

2019-06-15 23:02:44 +00:00
#!/bin/bash
set -e
set -x
source /usr/share/mynode/mynode_config.sh
# Verify FS is mounted as R/W
if [ ! -w / ]; then
mount -o remount,rw /;
fi
2020-01-16 02:53:50 +00:00
# Make sure resolv.conf is a symlink to so resolvconf works
2020-01-20 03:25:45 +00:00
# if [ ! -h /etc/resolv.conf ]; then
# rm -f /etc/resolv.conf
# touch /etc/resolvconf/run/resolv.conf
# ln -s /etc/resolvconf/run/resolv.conf /etc/resolv.conf
# sync
# reboot
# sleep 10s
# exit 1
# fi
# Add some DNS servers to make domain lookup more likely
echo '' >> /etc/resolv.conf
echo '# Added at myNode startup' >> /etc/resolv.conf
echo 'nameserver 8.8.8.8' >> /etc/resolv.conf
echo 'nameserver 8.8.4.4' >> /etc/resolv.conf
echo 'nameserver 1.1.1.1' >> /etc/resolv.conf
2019-09-24 01:50:02 +00:00
# Disable autosuspend for USB drives
for dev in /sys/bus/usb/devices/*/power/control; do echo "on" > $dev; done
2019-11-30 03:42:34 +00:00
# Verify SD card permissions and folders are OK
mkdir -p /home/admin/.config/
chown -R admin:admin /home/admin/.config/
2019-06-15 23:02:44 +00:00
# Expand Root FS
mkdir -p /var/lib/mynode
if [ ! -f /var/lib/mynode/.expanded_rootfs ]; then
if [ $IS_RASPI -eq 1 ]; then
2019-06-15 23:02:44 +00:00
raspi-config --expand-rootfs
touch /var/lib/mynode/.expanded_rootfs
fi
2019-12-17 03:49:25 +00:00
if [ $IS_ROCK64 = 1 ] || [ $IS_ROCKPRO64 = 1 ]; then
/usr/lib/armbian/armbian-resize-filesystem start
2019-07-06 01:48:38 +00:00
touch /var/lib/mynode/.expanded_rootfs
fi
2019-06-15 23:02:44 +00:00
fi
2020-01-17 04:22:31 +00:00
# Verify we are in a clean state
2019-12-05 04:28:56 +00:00
if [ $IS_RASPI -eq 1 ] || [ $IS_ROCKPRO64 -eq 1 ]; then
2019-06-15 23:02:44 +00:00
dphys-swapfile swapoff || true
dphys-swapfile uninstall || true
fi
umount /mnt/hdd || true
2019-12-12 01:34:34 +00:00
# Check drive
set +e
2019-12-22 03:27:14 +00:00
touch /tmp/repairing_drive
2019-12-12 01:34:34 +00:00
for d in /dev/sd*1; do
echo "Repairing drive $d ...";
RC=$(fsck -y $d > /tmp/fsck_results 2>&1)
if [ $RC -ne 0 ]; then
touch /tmp/fsck_error
fi
done
2019-12-22 03:27:14 +00:00
rm -f /tmp/repairing_drive
2019-12-12 01:34:34 +00:00
set -e
2019-06-15 23:02:44 +00:00
# Mount HDD (format if necessary)
while [ ! -f /mnt/hdd/.mynode ]
do
mount_drive.tcl || true
sleep 10
done
2019-06-15 23:02:44 +00:00
# Setup Drive
mkdir -p /mnt/hdd/mynode
mkdir -p /mnt/hdd/mynode/settings
mkdir -p /mnt/hdd/mynode/.config
2019-06-15 23:02:44 +00:00
mkdir -p /mnt/hdd/mynode/bitcoin
mkdir -p /mnt/hdd/mynode/lnd
mkdir -p /mnt/hdd/mynode/quicksync
mkdir -p /mnt/hdd/mynode/redis
mkdir -p /mnt/hdd/mynode/mongodb
mkdir -p /mnt/hdd/mynode/electrs
2019-11-12 03:20:10 +00:00
mkdir -p /mnt/hdd/mynode/docker
mkdir -p /tmp/flask_uploads
2019-06-15 23:02:44 +00:00
echo "drive_mounted" > $MYNODE_DIR/.mynode_status
chmod 777 $MYNODE_DIR/.mynode_status
rm -rf $MYNODE_DIR/.mynode_bitcoind_synced
# Setup SD Card (if necessary)
2019-11-17 04:20:23 +00:00
mkdir -p /run/tor
mkdir -p /var/run/tor
mkdir -p /home/bitcoin/.mynode/
2019-06-15 23:02:44 +00:00
mkdir -p /home/admin/.bitcoin/
chown admin:admin /home/admin/.bitcoin/
rm -rf /etc/motd # Remove simple motd for update-motd.d
2019-06-15 23:02:44 +00:00
2019-08-10 01:08:50 +00:00
# Make any users we need to
useradd -m -s /bin/bash pivpn || true
2019-06-15 23:02:44 +00:00
# Regen SSH keys (check if force regen or keys are missing / empty)
while [ ! -f /home/bitcoin/.mynode/.gensshkeys ] ||
[ ! -f /etc/ssh/ssh_host_ecdsa_key.pub ] ||
[ ! -s /etc/ssh/ssh_host_ecdsa_key.pub ] ||
[ ! -f /etc/ssh/ssh_host_ed25519_key.pub ] ||
[ ! -s /etc/ssh/ssh_host_ed25519_key.pub ] ||
[ ! -f /etc/ssh/ssh_host_rsa_key.pub ] ||
[ ! -s /etc/ssh/ssh_host_rsa_key.pub ]
do
sleep 10s
2019-06-15 23:02:44 +00:00
rm -rf /etc/ssh/ssh_host_*
dpkg-reconfigure openssh-server
systemctl restart ssh
touch /home/bitcoin/.mynode/.gensshkeys
2019-10-24 04:18:46 +00:00
sync
sleep 5s
done
2019-06-15 23:02:44 +00:00
# Sync product key (SD preferred)
2019-07-28 20:36:20 +00:00
cp -f /home/bitcoin/.mynode/.product_key* /mnt/hdd/mynode/settings/ || true
cp -f /mnt/hdd/mynode/settings/.product_key* home/bitcoin/.mynode/ || true
2019-06-15 23:02:44 +00:00
# Randomize RPC password
while [ ! -f /mnt/hdd/mynode/settings/.btcrpcpw ] || [ ! -s /mnt/hdd/mynode/settings/.btcrpcpw ]
do
2019-06-15 23:02:44 +00:00
# Write random pw to .btcrpcpw
sleep 10s
< /dev/urandom tr -dc A-Za-z0-9 | head -c${1:-24} > /mnt/hdd/mynode/settings/.btcrpcpw
chown bitcoin:bitcoin /mnt/hdd/mynode/settings/.btcrpcpw
chmod 600 /mnt/hdd/mynode/settings/.btcrpcpw
done
2019-06-15 23:02:44 +00:00
# Setup LND Node Name
if [ ! -f /mnt/hdd/mynode/settings/.lndalias ]; then
echo "mynodebtc.com [myNode]" > /mnt/hdd/mynode/settings/.lndalias
2019-06-15 23:02:44 +00:00
fi
2019-10-24 04:18:46 +00:00
# Default QuickSync
if [ ! -f /mnt/hdd/mynode/settings/.setquicksyncdefault ]; then
# Default x86 to no QuickSync
if [ $IS_X86 = 1 ]; then
touch /mnt/hdd/mynode/settings/quicksync_disabled
fi
# Default SSD to no QuickSync
DRIVE=$(cat /tmp/.mynode_drive)
HDD=$(lsblk $DRIVE -o ROTA | tail -n 1 | tr -d '[:space:]')
if [ "$HDD" = "0" ]; then
touch /mnt/hdd/mynode/settings/quicksync_disabled
fi
touch /mnt/hdd/mynode/settings/.setquicksyncdefault
fi
2019-06-15 23:02:44 +00:00
# BTC Config
2019-11-04 04:50:47 +00:00
source /usr/bin/mynode_gen_bitcoin_config.sh
# LND Config
2019-11-04 04:50:47 +00:00
source /usr/bin/mynode_gen_lnd_config.sh
# RTL config
cp /usr/share/mynode/RTL.conf /opt/mynode/RTL/RTL.conf
2019-07-28 23:34:08 +00:00
if [ -f /home/bitcoin/.mynode/.hashedpw ]; then
HASH=$(cat /home/bitcoin/.mynode/.hashedpw)
sed -i "s/rtlPassHashed=.*/rtlPassHashed=$HASH/g" /opt/mynode/RTL/RTL.conf
fi
chown bitcoin:bitcoin /opt/mynode/RTL/RTL.conf
# LND Admin Config
2019-11-10 02:52:04 +00:00
#if [ ! -f /home/bitcoin/.lnd-admin/credentials.json ]; then
# cp /usr/share/mynode/lnd_admin_credentials.json /home/bitcoin/.lnd-admin/credentials.json
# chown bitcoin:bitcoin /home/bitcoin/.lnd-admin/credentials.json
#fi
2019-10-05 01:30:56 +00:00
# BTC RPC Explorer Config
if [ ! -f /opt/mynode/btc-rpc-explorer/.env ]; then
cp /usr/share/mynode/btc_rpc_explorer_env /opt/mynode/btc-rpc-explorer/.env
chown bitcoin:bitcoin /opt/mynode/btc-rpc-explorer/.env
fi
2019-06-15 23:02:44 +00:00
# Update files that need RPC password (needed if upgrades overwrite files)
PW=$(cat /mnt/hdd/mynode/settings/.btcrpcpw)
2019-06-15 23:02:44 +00:00
if [ -f /opt/mynode/LndHub/config.js ]; then
sed -i "s/mynode:.*@/mynode:$PW@/g" /opt/mynode/LndHub/config.js
fi
if [ -f /opt/mynode/btc-rpc-explorer/.env ]; then
sed -i "s/BTCEXP_BITCOIND_PASS=.*/BTCEXP_BITCOIND_PASS=$PW/g" /opt/mynode/btc-rpc-explorer/.env
fi
echo "BTC_RPC_PASSWORD=$PW" > /mnt/hdd/mynode/settings/.btcrpc_environment
chown bitcoin:bitcoin /mnt/hdd/mynode/settings/.btcrpc_environment
2019-06-15 23:02:44 +00:00
if [ -f /mnt/hdd/mynode/bitcoin/bitcoin.conf ]; then
#sed -i "s/rpcpassword=.*/rpcpassword=$PW/g" /mnt/hdd/mynode/bitcoin/bitcoin.conf
sed -i "s/rpcauth=.*/$RPCAUTH/g" /mnt/hdd/mynode/bitcoin/bitcoin.conf
2019-06-15 23:02:44 +00:00
fi
cp -f /mnt/hdd/mynode/bitcoin/bitcoin.conf /home/admin/.bitcoin/bitcoin.conf
chown admin:admin /home/admin/.bitcoin/bitcoin.conf
2019-06-15 23:02:44 +00:00
# Reset BTCARGS
echo "BTCARGS=" > /mnt/hdd/mynode/bitcoin/env
# Set proper permissions on drive
USER=$(stat -c '%U' /mnt/hdd/mynode/quicksync)
if [ "$USER" != "bitcoin" ]; then
chown -R bitcoin:bitcoin /mnt/hdd/mynode/quicksync
fi
USER=$(stat -c '%U' /mnt/hdd/mynode/settings)
if [ "$USER" != "bitcoin" ]; then
chown -R bitcoin:bitcoin /mnt/hdd/mynode/settings
fi
USER=$(stat -c '%U' /mnt/hdd/mynode/.config)
if [ "$USER" != "bitcoin" ]; then
chown -R bitcoin:bitcoin /mnt/hdd/mynode/.config
fi
2019-06-15 23:02:44 +00:00
USER=$(stat -c '%U' /mnt/hdd/mynode/bitcoin)
if [ "$USER" != "bitcoin" ]; then
chown -R bitcoin:bitcoin /mnt/hdd/mynode/bitcoin
fi
USER=$(stat -c '%U' /home/bitcoin)
if [ "$USER" != "bitcoin" ]; then
chown -R --no-dereference bitcoin:bitcoin /home/bitcoin
fi
USER=$(stat -c '%U' /home/bitcoin/.mynode)
if [ "$USER" != "bitcoin" ]; then
chown -R bitcoin:bitcoin /home/bitcoin/.mynode
fi
USER=$(stat -c '%U' /mnt/hdd/mynode/lnd)
if [ "$USER" != "bitcoin" ]; then
chown -R bitcoin:bitcoin /mnt/hdd/mynode/lnd
fi
USER=$(stat -c '%U' /mnt/hdd/mynode/redis)
if [ "$USER" != "redis" ]; then
chown -R redis:redis /mnt/hdd/mynode/redis
fi
chown -R redis:redis /etc/redis/
#USER=$(stat -c '%U' /mnt/hdd/mynode/mongodb)
#if [ "$USER" != "mongodb" ]; then
# chown -R mongodb:mongodb /mnt/hdd/mynode/mongodb
#fi
2019-06-15 23:02:44 +00:00
USER=$(stat -c '%U' /mnt/hdd/mynode/electrs)
if [ "$USER" != "bitcoin" ]; then
chown -R bitcoin:bitcoin /mnt/hdd/mynode/electrs
fi
chown bitcoin:bitcoin /mnt/hdd/
chown bitcoin:bitcoin /mnt/hdd/mynode/
# Setup swap on new HDD
2019-12-05 04:28:56 +00:00
if [ $IS_RASPI -eq 1 ] || [ $IS_ROCKPRO64 -eq 1 ]; then
2019-06-15 23:02:44 +00:00
if [ ! -f /mnt/hdd/swapfile ]; then
dd if=/dev/zero of=/mnt/hdd/swapfile count=1000 bs=1MiB
chmod 600 /mnt/hdd/swapfile
fi
mkswap /mnt/hdd/swapfile
dphys-swapfile setup
dphys-swapfile swapon
fi
# Make sure every enabled service is really enabled
# This can happen from full-SD card upgrades
STARTUP_MODIFIED=0
if [ -f $ELECTRS_ENABLED_FILE ]; then
if systemctl status electrs | grep "disabled;"; then
systemctl enable electrs
STARTUP_MODIFIED=1
fi
fi
if [ -f $LNDHUB_ENABLED_FILE ]; then
if systemctl status lndhub | grep "disabled;"; then
systemctl enable lndhub
STARTUP_MODIFIED=1
fi
fi
if [ -f $BTCRPCEXPLORER_ENABLED_FILE ]; then
if systemctl status btc_rpc_explorer | grep "disabled;"; then
systemctl enable btc_rpc_explorer
STARTUP_MODIFIED=1
fi
fi
2020-01-17 04:22:31 +00:00
if [ -f $MEMPOOLSPACE_ENABLED_FILE ]; then
if systemctl status mempoolspace | grep "disabled;"; then
systemctl enable mempoolspace
STARTUP_MODIFIED=1
fi
fi
if [ -f $BTCPAYSERVER_ENABLED_FILE ]; then
if systemctl status btcpayserver | grep "disabled;"; then
systemctl enable btcpayserver
STARTUP_MODIFIED=1
fi
fi
if [ -f $VPN_ENABLED_FILE ]; then
if systemctl status vpn | grep "disabled;"; then
systemctl enable vpn
systemctl enable openvpn || true
STARTUP_MODIFIED=1
fi
fi
if [ $STARTUP_MODIFIED -eq 1 ]; then
sync
reboot
exit 0
fi
# Weird hacks
chmod +x /usr/bin/electrs || true # Once, a device didn't have the execute bit set for electrs
2019-07-28 21:02:56 +00:00
# Check for new versions
wget $LATEST_VERSION_URL -O /usr/share/mynode/latest_version || true
2019-06-15 23:02:44 +00:00
# Update current state
if [ -f $QUICKSYNC_DIR/.quicksync_complete ]; then
echo "stable" > $MYNODE_DIR/.mynode_status
fi