Update pve7_zigbee2mqtt_container.sh

pull/10/head
tteck 2021-09-28 18:10:00 -04:00 committed by GitHub
parent 96d4c4faee
commit e28186411c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -1,5 +1,14 @@
#!/usr/bin/env bash
while true; do
read -p "This will create a New Zigbee2MQTT 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