Compare commits

..

9 Commits

Author SHA1 Message Date
tteckster 35f5b8413d
Update homeassistant-core.sh
spelling
2023-03-24 13:34:25 -04:00
tteckster e589e28fa4
Update alpine-grafana.sh
-q
2023-03-24 13:28:39 -04:00
tteckster 29ff02c742
Update alpine-docker.sh
-q
2023-03-24 13:28:19 -04:00
tteckster d9445a3d64
Update alpine-adguard.sh
-q
2023-03-24 13:27:57 -04:00
tteckster b10106aa2a
Update alpine-zigbee2mqtt.sh
add `newt` check
2023-03-24 13:27:20 -04:00
tteckster b1abfa9ac6
Update alpine-vaultwarden.sh
add `newt` check
2023-03-24 13:26:04 -04:00
tteckster 0e49af62df
Update alpine-grafana.sh
add `newt` check
2023-03-24 13:24:30 -04:00
tteckster 2facedfe71
Update alpine-docker.sh
add `newt` check
2023-03-24 13:23:58 -04:00
tteckster 2b5ff5bb0e
Update alpine-adguard.sh
add `newt` check
2023-03-24 13:23:11 -04:00
6 changed files with 16 additions and 1 deletions

View File

@ -52,6 +52,9 @@ function default_settings() {
}
function update_script() {
if ! apk -e info newt >/dev/null 2>&1; then
apk add -q newt
fi
while true; do
CHOICE=$(
whiptail --title "SUPPORT" --menu "Select option" 11 58 2 \

View File

@ -52,6 +52,9 @@ function default_settings() {
}
function update_script() {
if ! apk -e info newt >/dev/null 2>&1; then
apk add -q newt
fi
while true; do
CHOICE=$(
whiptail --title "SUPPORT" --menu "Select option" 11 58 1 \

View File

@ -52,6 +52,9 @@ function default_settings() {
}
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)
while true; do
CHOICE=$(

View File

@ -52,6 +52,9 @@ function default_settings() {
}
function update_script() {
if ! apk -e info newt >/dev/null 2>&1; then
apk add -q newt
fi
while true; do
CHOICE=$(
whiptail --title "SUPPORT" --menu "Select option" 11 58 2 \

View File

@ -52,6 +52,9 @@ function default_settings() {
}
function update_script() {
if ! apk -e info newt >/dev/null 2>&1; then
apk add -q newt
fi
while true; do
CHOICE=$(
whiptail --title "SUPPORT" --menu "Select option" 11 58 1 \

View File

@ -73,7 +73,7 @@ function update_script() {
else
clear
header_info
echo -e "${GN}Updating to Srable Version${CL}"
echo -e "${GN}Updating to Stable Version${CL}"
BR=""
fi
if [[ "$PY" == "python3.9" ]]; then echo -e "⚠️ Python 3.9 is deprecated and will be removed in Home Assistant 2023.2"; fi