Update homeassistant-v5.sh

add install hacs
pull/930/head
tteckster 2023-01-01 10:41:11 -05:00 committed by GitHub
parent 92e4c446ef
commit 4a997ef40b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

@ -321,6 +321,7 @@ function update_script() {
UPD=$(whiptail --title "UPDATE" --radiolist --cancel-button Exit-Script "Choose Type" 8 58 2 \
"1" "Update ALL Containers" ON \
"2" "Remove ALL Unused Images" OFF \
"3" "Install HACS" OFF \
3>&1 1>&2 2>&3)
clear
header_info
@ -348,6 +349,18 @@ docker image prune -af
msg_ok "Removed ALL Unused Images"
exit
fi
if [ "$UPD" == "3" ]; then
clear
header_info
msg_info "Installing Home Assistant Comunity Store (HACS)"
apt update &>/dev/null
apt install unzip &>/dev/null
cd /var/lib/docker/volumes/hass_config/_data
wget -O - https://get.hacs.xyz | bash -
msg_ok "Installed Home Assistant Comunity Store (HACS)"
echo -e "\n Reboot Home Assistant and clear browser cache then Add HACS integration.\n"
exit
fi
}
clear
if ! command -v pveversion >/dev/null 2>&1; then update_script; else install_script; fi