mirror of https://github.com/tteck/Proxmox.git
Compare commits
9 Commits
851b8458e3
...
35f5b8413d
Author | SHA1 | Date |
---|---|---|
|
35f5b8413d | |
|
e589e28fa4 | |
|
29ff02c742 | |
|
d9445a3d64 | |
|
b10106aa2a | |
|
b1abfa9ac6 | |
|
0e49af62df | |
|
2facedfe71 | |
|
2b5ff5bb0e |
|
@ -52,6 +52,9 @@ function default_settings() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function update_script() {
|
function update_script() {
|
||||||
|
if ! apk -e info newt >/dev/null 2>&1; then
|
||||||
|
apk add -q newt
|
||||||
|
fi
|
||||||
while true; do
|
while true; do
|
||||||
CHOICE=$(
|
CHOICE=$(
|
||||||
whiptail --title "SUPPORT" --menu "Select option" 11 58 2 \
|
whiptail --title "SUPPORT" --menu "Select option" 11 58 2 \
|
||||||
|
|
|
@ -52,6 +52,9 @@ function default_settings() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function update_script() {
|
function update_script() {
|
||||||
|
if ! apk -e info newt >/dev/null 2>&1; then
|
||||||
|
apk add -q newt
|
||||||
|
fi
|
||||||
while true; do
|
while true; do
|
||||||
CHOICE=$(
|
CHOICE=$(
|
||||||
whiptail --title "SUPPORT" --menu "Select option" 11 58 1 \
|
whiptail --title "SUPPORT" --menu "Select option" 11 58 1 \
|
||||||
|
|
|
@ -52,6 +52,9 @@ function default_settings() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function update_script() {
|
function update_script() {
|
||||||
|
if ! apk -e info newt >/dev/null 2>&1; then
|
||||||
|
apk add -q newt
|
||||||
|
fi
|
||||||
LXCIP=$(ip a s dev eth0 | awk '/inet / {print $2}' | cut -d/ -f1)
|
LXCIP=$(ip a s dev eth0 | awk '/inet / {print $2}' | cut -d/ -f1)
|
||||||
while true; do
|
while true; do
|
||||||
CHOICE=$(
|
CHOICE=$(
|
||||||
|
|
|
@ -52,6 +52,9 @@ function default_settings() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function update_script() {
|
function update_script() {
|
||||||
|
if ! apk -e info newt >/dev/null 2>&1; then
|
||||||
|
apk add -q newt
|
||||||
|
fi
|
||||||
while true; do
|
while true; do
|
||||||
CHOICE=$(
|
CHOICE=$(
|
||||||
whiptail --title "SUPPORT" --menu "Select option" 11 58 2 \
|
whiptail --title "SUPPORT" --menu "Select option" 11 58 2 \
|
||||||
|
|
|
@ -52,6 +52,9 @@ function default_settings() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function update_script() {
|
function update_script() {
|
||||||
|
if ! apk -e info newt >/dev/null 2>&1; then
|
||||||
|
apk add -q newt
|
||||||
|
fi
|
||||||
while true; do
|
while true; do
|
||||||
CHOICE=$(
|
CHOICE=$(
|
||||||
whiptail --title "SUPPORT" --menu "Select option" 11 58 1 \
|
whiptail --title "SUPPORT" --menu "Select option" 11 58 1 \
|
||||||
|
|
|
@ -73,7 +73,7 @@ function update_script() {
|
||||||
else
|
else
|
||||||
clear
|
clear
|
||||||
header_info
|
header_info
|
||||||
echo -e "${GN}Updating to Srable Version${CL}"
|
echo -e "${GN}Updating to Stable Version${CL}"
|
||||||
BR=""
|
BR=""
|
||||||
fi
|
fi
|
||||||
if [[ "$PY" == "python3.9" ]]; then echo -e "⚠️ Python 3.9 is deprecated and will be removed in Home Assistant 2023.2"; fi
|
if [[ "$PY" == "python3.9" ]]; then echo -e "⚠️ Python 3.9 is deprecated and will be removed in Home Assistant 2023.2"; fi
|
||||||
|
|
Loading…
Reference in New Issue