浏览代码

Update esphome_container.sh

tteck 3 年之前
父节点
当前提交
70c4661e1c
共有 1 个文件被更改,包括 9 次插入0 次删除
  1. 9 0
      esphome_container.sh

+ 9 - 0
esphome_container.sh

@@ -1,5 +1,14 @@
 #!/usr/bin/env bash
 
+while true; do
+    read -p "This will create a new Proxmox ESPHome LXC Container, continue(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