From 7a135349d5ccb684d20aca38c8295b034730a95c Mon Sep 17 00:00:00 2001 From: tteckster Date: Tue, 8 Mar 2022 10:47:45 -0500 Subject: [PATCH] Update zigbee2mqtt.sh --- ct/zigbee2mqtt.sh | 53 +++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 49 insertions(+), 4 deletions(-) diff --git a/ct/zigbee2mqtt.sh b/ct/zigbee2mqtt.sh index 65013d29..56e8bccb 100644 --- a/ct/zigbee2mqtt.sh +++ b/ct/zigbee2mqtt.sh @@ -30,16 +30,16 @@ ${CL}" header_info show_menu(){ - printf " ${YW} 1)${GN} Privileged ${CL}\n" -# printf " ${YW} 2)${RD} Unprivileged ${CL}\n" + printf " ${YW} 1)${YW} Privileged ${CL}\n" + printf " ${YW} 2)${GN} Unprivileged ${CL}\n" printf "Please choose a Install Method and hit enter or ${RD}x${CL} to exit." read opt } option_picked(){ - message=${@:-"${CL}Error: No message passed"} - printf " ${YW}${message}${CL}\n" + message1=${@:-"${CL}Error: No message passed"} + printf " ${YW}${message1}${CL}\n" } show_menu while [ $opt != '' ] @@ -72,6 +72,50 @@ while [ $opt != '' ] esac fi done +show_menu2(){ + printf " ${YW} 1)${GN} Use Automatic Login ${CL}\n" + printf " ${YW} 2)${GN} Use Password (changeme) ${CL}\n" + + printf "Please choose a Password Type and hit enter or ${RD}x${CL} to exit." + read opt +} + +option_picked(){ + message=${@:-"${CL}Error: No message passed"} + printf " ${YW}${message1}${CL}\n" + printf " ${YW}${message}${CL}\n" +} +show_menu2 +while [ $opt != '' ] + do + if [ $opt = '' ]; then + exit; + else + case $opt in + 1) clear; + header_info; + option_picked "Using Automatic Login"; + PW=" " + break; + ;; + 2) clear; + header_info; + option_picked "Using Password (changeme)"; + PW="-password changeme" + break; + ;; + + x)exit; + ;; + \n)exit; + ;; + *)clear; + option_picked "Please choose a Password Type from the menu"; + show_menu2; + ;; + esac + fi + done set -o errexit set -o errtrace @@ -140,6 +184,7 @@ export PCT_OPTIONS=" -cores 2 -memory 1024 -unprivileged ${IM} + ${PW} " bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/ct/create_lxc.sh)" || exit