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

84 lines
2.2 KiB
Bash
Raw Normal View History

2021-05-06 04:14:05 +00:00
#!/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
2021-05-08 19:54:20 +00:00
echo "Usage: mynode_uninstall_app.sh <app_name>"
2021-05-06 04:14:05 +00:00
exit 1
fi
APP="$1"
# Delete the app's version file and install file
rm -f /home/bitcoin/.mynode/${APP}_version || true
rm -f /mnt/hdd/mynode/settings/${APP}_version || true
rm -f /home/bitcoin/.mynode/install_${APP} || true
rm -f /mnt/hdd/mynode/settings/install_${APP} || true
sync
# Custom uninstall steps
2021-05-18 01:41:26 +00:00
if [ "$APP" = "bos" ]; then
npm uninstall -g balanceofsatoshis
elif [ "$APP" = "btcpayserver" ]; then
2022-04-14 02:36:04 +00:00
# Stop and clean images
/usr/local/bin/btcpay-down.sh
/usr/local/bin/btcpay-clean.sh
# Remove files and data
2022-04-14 03:17:48 +00:00
source /etc/profile.d/btcpay-env.sh
2022-04-14 02:36:04 +00:00
cd "$(dirname "$BTCPAY_ENV_FILE")"
docker-compose -f $BTCPAY_DOCKER_COMPOSE down --v # Remove volumes (uninstall only, not reinstall)
cd ~
2022-04-14 02:36:04 +00:00
rm -f /etc/profile.d/btcpay-env.sh
rm -rf /usr/local/bin/btcpay-*
rm -rf /usr/local/bin/changedomain.sh
# Finally remove main folder
rm -rf /mnt/hdd/mynode/btcpayserver
2021-05-18 01:41:26 +00:00
elif [ "$APP" = "btcrpcexplorer" ]; then
2021-05-06 04:14:05 +00:00
rm -rf /opt/mynode/btc-rpc-explorer
2021-05-18 01:56:17 +00:00
elif [ "$APP" = "dojo" ]; then
rm -f /mnt/hdd/mynode/settings/dojo_url
rm -f /mnt/hdd/mynode/settings/mynode_dojo_install
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
elif [ "$APP" = "joininbox" ]; then
rm -rf /home/joinmarket/*
rm -rf /home/joinmarket/joininbox-*
rm -rf /home/joinmarket/.cache
2021-05-06 04:14:05 +00:00
elif [ "$APP" = "lndhub" ]; then
rm -rf /opt/mynode/LndHub
2021-11-19 20:47:04 +00:00
elif [ "$APP" = "lndmanage" ]; then
pip3 uninstall -y lndmanage
elif [ "$APP" = "mempool" ]; then
cd /mnt/hdd/mynode/mempool
docker-compose rm
rm -rf data
rm -rf mysql/data
cd ~
2021-05-06 04:14:05 +00:00
elif [ "$APP" = "rtl" ]; then
2021-05-18 01:41:26 +00:00
rm -rf /opt/mynode/RTL
2021-05-06 04:14:05 +00:00
else
echo "No custom uninstall steps"
fi
2022-06-24 03:48:55 +00:00
# Attempt dynamic app uninstall
mynode-manage-apps uninstall "$APP"
2022-06-24 03:48:55 +00:00
# Remove app folder
rm -rf /opt/mynode/${APP}
2021-05-06 04:14:05 +00:00
chown -R admin:admin /home/admin/upgrade_logs
sync