diff --git a/ct/homeassistant-v5.sh b/ct/homeassistant-v5.sh index 7791ece8..13530f91 100644 --- a/ct/homeassistant-v5.sh +++ b/ct/homeassistant-v5.sh @@ -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