소스 검색

Update pve7_zigbee2mqtt_container.sh

tteck 3 년 전
부모
커밋
e28186411c
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 9 0
      pve7_zigbee2mqtt_container.sh

+ 9 - 0
pve7_zigbee2mqtt_container.sh

@@ -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