From 96d4c4faee9d465bc2d82c0bc87bb8266a525972 Mon Sep 17 00:00:00 2001 From: tteck Date: Tue, 28 Sep 2021 18:09:11 -0400 Subject: [PATCH] Update pve7_ha_container.sh --- pve7_ha_container.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pve7_ha_container.sh b/pve7_ha_container.sh index 8c5963e1..d705c9a9 100644 --- a/pve7_ha_container.sh +++ b/pve7_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