FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

[ ON HOLD] Uninstall dappnode on error by pablomendezroyo · Pull Request #342 · dappnode/DAppNode · GitHub

Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .sh  (1) All 1 file type selected
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
11 changes: 11 additions & 0 deletions scripts/dappnode_install.sh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
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

Back | FazBrowse Home | New Git URL