Skip to content

Commit

Permalink
New message
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Marino committed Oct 29, 2024
1 parent da0c386 commit f9316b2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions ethpillar.sh
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ while true; do
;;
5)
sudo nano /etc/systemd/system/execution.service
if whiptail --title "Reload daemon and restart services" --yesno "Do you want to restart execution client?\nNote: Saved changes are not applied until daemon is reloaded and\nrestarted. Restarting with EthPillar does not reload new config." 9 78; then
if whiptail --title "Reload daemon and restart services" --yesno "Do you want to reload daemon and restart execution client?\nNote: Saved changes are not applied until daemon is reloaded and\nrestarted. Restarting with EthPillar does not reload new config." 9 78; then
sudo systemctl daemon-reload && sudo service execution restart
fi
;;
Expand Down Expand Up @@ -243,7 +243,7 @@ while true; do
;;
5)
sudo nano /etc/systemd/system/consensus.service
if whiptail --title "Reload daemon and restart services" --yesno "Do you want to restart consensus client?\nNote: Saved changes are not applied until daemon is reloaded and\nrestarted. Restarting with EthPillar does not reload new config." 9 78; then
if whiptail --title "Reload daemon and restart services" --yesno "Do you want to reload daemon and restart consensus client?\nNote: Saved changes are not applied until daemon is reloaded and\nrestarted. Restarting with EthPillar does not reload new config." 9 78; then
sudo systemctl daemon-reload && sudo service consensus restart
fi
;;
Expand Down Expand Up @@ -319,7 +319,7 @@ while true; do
;;
5)
sudo nano /etc/systemd/system/validator.service
if whiptail --title "Reload daemon and restart services" --yesno "Do you want to restart validator?\nNote: Saved changes are not applied until daemon is reloaded and\nrestarted. Restarting with EthPillar does not reload new config." 9 78; then
if whiptail --title "Reload daemon and restart services" --yesno "Do you want to reload daemon and restart validator?\nNote: Saved changes are not applied until daemon is reloaded and\nrestarted. Restarting with EthPillar does not reload new config." 9 78; then
sudo systemctl daemon-reload && sudo service validator restart
fi
;;
Expand Down Expand Up @@ -409,7 +409,7 @@ while true; do
;;
5)
sudo nano /etc/systemd/system/mevboost.service
if whiptail --title "Reload daemon and restart services" --yesno "Do you want to restart MEV-Boost\nNote: Saved changes are not applied until daemon is reloaded and\nrestarted. Restarting with EthPillar does not reload new config." 9 78; then
if whiptail --title "Reload daemon and restart services" --yesno "Do you want to reload daemon and restart MEV-Boost\nNote: Saved changes are not applied until daemon is reloaded and\nrestarted. Restarting with EthPillar does not reload new config." 9 78; then
sudo systemctl daemon-reload && sudo service mevboost restart
fi
;;
Expand Down Expand Up @@ -590,7 +590,7 @@ while true; do
;;
5)
sudo nano /etc/systemd/system/ethereum-metrics-exporter.service
if whiptail --title "Reload daemon and restart services" --yesno "Do you want to restart ethereum metrics exporter?\nNote: Saved changes are not applied until daemon is reloaded and\nrestarted. Restarting with EthPillar does not reload new config." 9 78; then
if whiptail --title "Reload daemon and restart services" --yesno "Do you want to reload daemon and restart ethereum metrics exporter?\nNote: Saved changes are not applied until daemon is reloaded and\nrestarted. Restarting with EthPillar does not reload new config." 9 78; then
sudo systemctl daemon-reload && sudo service ethereum-metrics-exporter restart
fi
;;
Expand Down Expand Up @@ -925,13 +925,13 @@ while true; do
;;
5)
sudo nano /etc/systemd/system/csm_nimbusvalidator.service
if whiptail --title "Reload daemon and restart services" --yesno "Do you want to restart validator?\nNote: Saved changes are not applied until daemon is reloaded and\nrestarted. Restarting with EthPillar does not reload new config." 9 78; then
if whiptail --title "Reload daemon and restart services" --yesno "Do you want to reload daemon and restart validator?\nNote: Saved changes are not applied until daemon is reloaded and\nrestarted. Restarting with EthPillar does not reload new config." 9 78; then
sudo systemctl daemon-reload && sudo service csm_nimbusvalidator restart
fi
;;
6)
sudo nano /opt/ethpillar/plugin-csm/csm_env_vars
if whiptail --title "Reload Environment values and restart services" --yesno "Do you want to restart validator?\nNote: Saved changes are not applied until daemon is reloaded and\nrestarted. Restarting with EthPillar does not reload new config." 9 78; then
if whiptail --title "Reload Environment values and restart services" --yesno "Do you want to reload daemon and restart validator?\nNote: Saved changes are not applied until daemon is reloaded and\nrestarted. Restarting with EthPillar does not reload new config." 9 78; then
sudo systemctl daemon-reload && sudo service csm_nimbusvalidator restart
fi
;;
Expand Down

0 comments on commit f9316b2

Please sign in to comment.