Skip to content
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 numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
#!/bin/bash
set -e

#############
# VARIABLES #
Expand DownExpand 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 DownExpand 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