瀏覽代碼

Update homeassistant-v5.sh

add install hacs
tteckster 2 年之前
父節點
當前提交
4a997ef40b
共有 1 個文件被更改,包括 13 次插入0 次删除
  1. 13 0
      ct/homeassistant-v5.sh

+ 13 - 0
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