mirror of https://github.com/tteck/Proxmox.git
Update alpine-vaultwarden-v5-install.sh
revert 12d5a78
Alpine doesn't like parameter expansion `${prompt,,}`
fixes https://github.com/tteck/Proxmox/issues/1144
This commit is contained in:
parent
e396345058
commit
ba7a7c1720
|
@ -74,7 +74,7 @@ trap - ERR
|
|||
if ping -c 1 -W 1 1.1.1.1 &> /dev/null; then msg_ok "Internet Connected"; else
|
||||
msg_error "Internet NOT Connected"
|
||||
read -r -p "Would you like to continue anyway? <y/N> " prompt
|
||||
if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
|
||||
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
|
||||
echo -e " ⚠️ ${RD}Expect Issues Without Internet${CL}"
|
||||
else
|
||||
echo -e " 🖧 Check Network Settings"
|
||||
|
|
Loading…
Reference in New Issue