Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ ON HOLD] Uninstall dappnode on error #342

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions scripts/dappnode_install.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
set -e

#############
# VARIABLES #
Expand Down Expand Up @@ -283,6 +284,13 @@ installExtraDpkg() {
fi
}

rollback() {
echo -e "\e[33m[ERROR]\e[0m something went wrong, uninstalling dappnode"
wget -qO - https://uninstaller.dappnode.io | bash
echo -e "Uninstalled dappnode"
exit 1
}

##############################################
#### SCRIPT START ####
##############################################
Expand Down Expand Up @@ -334,4 +342,7 @@ if [ -f "/usr/src/dappnode/.firstboot" ]; then
exit 0
fi

# Rollback on error: https://medium.com/@dirk.avery/the-bash-trap-trap-ce6083f36700
trap 'rollback' EXIT

exit 0