Przeglądaj źródła

Update haos_vm.sh

tteck 3 lat temu
rodzic
commit
ecdd875ffd
1 zmienionych plików z 9 dodań i 0 usunięć
  1. 9 0
      haos_vm.sh

+ 9 - 0
haos_vm.sh

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