2021-11-13 19:15:04 +01:00
|
|
|
#!/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 -
|
|
|
|
|
2021-11-13 19:24:05 +01:00
|
|
|
# To install HACS run the following from the container (LXC) console
|
|
|
|
# bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/hacs.sh)"
|
2021-11-13 19:28:05 +01:00
|
|
|
# Then add the integration in HA
|