Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/blame/commit/ee71b26f0c1651a44d654cad6aaf85170be3f4d1/hacs.sh You should set ROOT_URL correctly, otherwise the web may not work correctly.
Proxmox_Helper_scripts/hacs.sh

21 lines
632 B

#!/usr/bin/env bash
echo -e "\e[1;33m This script will install Home Assistant Community Store (HACS) \e[0m"
while true; do
read -p "Start the HACS Install Script (y/n)?" yn
case $yn in
[Yy]* ) break;;
[Nn]* ) exit;;
* ) echo "Please answer yes or no.";;
esac
done
apt update &>/dev/null
apt install unzip &>/dev/null
cd /var/lib/docker/volumes/hass_config/_data
wget -O - https://get.hacs.xyz | bash -
3 years ago
# To install HACS run the following from the container (LXC) console
# bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/hacs.sh)"
3 years ago
# Then add the integration in HA

Powered by BW's shoe-string budget.