mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-15 09:59:16 +00:00
69 lines
1.8 KiB
Bash
Executable File
69 lines
1.8 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
#set -e
|
|
|
|
source /usr/share/mynode/mynode_config.sh
|
|
source /usr/share/mynode/mynode_app_versions.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"
|
|
|
|
# Shut down main services to save memory and CPU and stop app being reinstalled
|
|
/usr/bin/mynode_stop_critical_services.sh
|
|
|
|
# Delete the app's version file so it will be re-installed
|
|
rm -f /home/bitcoin/.mynode/${APP}_version || true
|
|
rm -f /mnt/hdd/mynode/settings/${APP}_version || true
|
|
|
|
# Custom re-install steps
|
|
if [ "$APP" = "netdata" ]; then
|
|
systemctl stop netdata
|
|
docker rmi netdata/netdata || true
|
|
elif [ "$APP" = "btcpayserver" ]; then
|
|
. "/opt/mynode/btcpayserver/btcpay-env.sh" && cd "$BTCPAY_BASE_DIRECTORY" && . helpers.sh && btcpay_remove
|
|
cd ~
|
|
elif [ "$APP" = "tor" ]; then
|
|
apt-get remove -y tor
|
|
apt-get install -y tor
|
|
elif [ "$APP" = "ufw" ]; then
|
|
apt-get purge -y ufw
|
|
apt-get install -y ufw
|
|
elif [ "$APP" = "webssh2" ]; then
|
|
rm -f /mnt/hdd/mynode/settings/webssh2_version
|
|
systemctl stop webssh2
|
|
docker rmi webssh2
|
|
elif [ "$APP" = "whirlpool" ]; then
|
|
rm -f $WHIRLPOOL_VERSION_FILE
|
|
elif [ "$APP" = "dojo" ]; then
|
|
rm -f /mnt/hdd/mynode/settings/dojo_url
|
|
cd /mnt/hdd/mynode/dojo/docker/my-dojo/
|
|
|
|
# Stop and uninstall
|
|
yes | ./dojo.sh uninstall
|
|
|
|
# Reset config files
|
|
cd ~
|
|
rm -rf /opt/download/dojo
|
|
rm -rf /mnt/hdd/mynode/dojo
|
|
else
|
|
echo "No custom re-install steps"
|
|
fi
|
|
|
|
# Run post upgrade script
|
|
for i in {1..3}
|
|
do
|
|
/bin/bash /usr/bin/mynode_post_upgrade.sh 2>&1 | tee /home/admin/upgrade_logs/reinstall_app_${APP}_post_${i}.txt
|
|
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 |