diff --git a/pve6_ha_container.sh b/pve6_ha_container.sh index ca2f6f87..878331f6 100644 --- a/pve6_ha_container.sh +++ b/pve6_ha_container.sh @@ -1,5 +1,14 @@ #!/usr/bin/env bash +while true; do + read -p "This will create a New Home Assistant LXC Container. Proceed(y/n)?" yn + case $yn in + [Yy]* ) break;; + [Nn]* ) exit;; + * ) echo "Please answer yes or no.";; + esac +done + # Setup script environment set -o errexit #Exit immediately if a pipeline returns a non-zero status set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell