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

59 lines
1.6 KiB
Bash
Raw Normal View History

2020-01-26 03:39:55 +00:00
#!/bin/bash
set -x
#set -e
source /usr/share/mynode/mynode_config.sh
# Make sure we have an app argument
if [ "$#" -ne 1 ]; then
echo "Usage: mynode_reinstall_app.sh <app_name>"
exit 1
fi
APP="$1"
# Delete the app's version file so it will be re-installed
if [ "$APP" = "bitcoin" ]; then
rm -f /home/bitcoin/.mynode/.btc_url
elif [ "$APP" = "lnd" ]; then
rm -f /home/bitcoin/.mynode/.lnd_url
2020-02-09 02:20:35 +00:00
elif [ "$APP" = "loopd" ]; then
rm -f /home/bitcoin/.mynode/.loop_url
2020-01-26 19:59:38 +00:00
elif [ "$APP" = "lndhub" ]; then
rm -f /home/bitcoin/.mynode/.lndhub_url
2020-01-26 03:39:55 +00:00
elif [ "$APP" = "rtl" ]; then
rm -f /home/bitcoin/.mynode/.rtl_url
elif [ "$APP" = "mempoolspace" ]; then
rm -f /mnt/hdd/mynode/settings/mempoolspace_url
2020-02-02 03:09:46 +00:00
systemctl stop mempoolspace
docker rmi mempoolspace
2020-01-26 03:39:55 +00:00
elif [ "$APP" = "joinmarket" ]; then
rm -f /home/bitcoin/.mynode/.joinmarket_url
elif [ "$APP" = "whirlpool" ]; then
rm -f /home/bitcoin/.mynode/.whirlpool_url
elif [ "$APP" = "btcrpcexplorer" ]; then
rm -f /home/bitcoin/.mynode/.btcrpcexplorer_url
elif [ "$APP" = "lndconnect" ]; then
rm -f /home/bitcoin/.mynode/.lndconnect_url
elif [ "$APP" = "webssh2" ]; then
rm -f /mnt/hdd/mynode/settings/webssh2_url
2020-02-09 02:20:35 +00:00
systemctl stop webssh2
docker rmi webssh2
2020-01-26 03:39:55 +00:00
else
echo "UNKNOWN APP: $APP"
exit 1
fi
# Run post upgrade script
for i in {1..3}
do
/bin/bash /usr/bin/mynode_post_upgrade.sh > /home/admin/upgrade_logs/reinstall_app_${APP}_post_${i}.txt 2>&1
RC=$?
if [ "${RC}" -eq "0" ]; then
rm -f $UPGRADE_ERROR_FILE
break
fi
sleep 10s
done
chown -R admin:admin /home/admin/upgrade_logs
sync