Update pve6_ha_container.sh

This commit is contained in:
tteck 2021-09-28 18:07:35 -04:00 committed by GitHub
parent d930d39116
commit 22d85660d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,14 @@
#!/usr/bin/env bash #!/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 # Setup script environment
set -o errexit #Exit immediately if a pipeline returns a non-zero status 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 set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell