Skip to content

Commit

Permalink
eth-duties, ems - improved handling when install is cancelled
Browse files Browse the repository at this point in the history
  • Loading branch information
coincashew committed Jul 30, 2024
1 parent 422ede9 commit 1634c72
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ethpillar.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# 🙌 Ask questions on Discord:
# * https://discord.gg/dEpAVWgFNB

EP_VERSION="2.0.1"
EP_VERSION="2.0.2"

# VARIABLES
export BASE_DIR="$HOME/git/ethpillar" && cd $BASE_DIR
Expand Down Expand Up @@ -900,6 +900,8 @@ while true; do
if [[ ! -f /usr/local/bin/eth-duties ]]; then
if whiptail --title "Install eth-duties" --yesno "Do you want to install eth-duties?\n\neth-duties shows upcoming validator duties." 8 78; then
runScript eth-duties.sh -i
else
break
fi
fi
submenuEthduties
Expand All @@ -909,6 +911,8 @@ while true; do
if [[ ! -f /etc/systemd/system/ethereum-metrics-exporter.service ]]; then
if whiptail --title "Install Monitoring" --yesno "Do you want to install Monitoring?\nIncludes: Ethereum Metrics Exporter, grafana, prometheus" 8 78; then
runScript ethereum-metrics-exporter.sh -i
else
break
fi
fi
submenuMonitoring
Expand Down

0 comments on commit 1634c72

Please sign in to comment.