mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-07-22 22:07:39 +00:00
.github
ct
misc
images
add-tailscale-lxc.sh
adguard-update.sh
bluetooth.sh
code-server.sh
container-restore-from-backup.sh
core-restore-from-backup.sh
core-update.sh
crowdsec.sh
daemonsync_2.2.0.0059_amd64.deb
dashy-update.sh
edge-kernel.sh
emby-update.sh
filebrowser.sh
frigate-support.sh
ha-copy-data-podman.sh
ha-copy-data.sh
hacontainer2hacore-data.sh
hacore2hacontainer-data.sh
hacore2hacore-data.sh
hacs-core.sh
hacs.sh
heimdalldashboard-all-update.sh
homepage-update.sh
kernel-clean.sh
latest-update-menu.sh
navidrome-update.sh
nocodb-update.sh
node-red-themes.sh
npm_update.sh
paperless-ngx-update.sh
photoprism-update.sh
pms-copy-data.sh
podman-copy-data-docker.sh
podman.md
podman_hacs.sh
post-pbs-install.sh
post-pve-install.sh
pyenv.sh
scaling-governor.sh
technitiumdns-update.sh
trilium-update.sh
unifi-update.sh
update-lxcs.sh
uptimekuma-update.sh
usb-passthrough.sh
vaultwarden-update.sh
web-vault-update.sh
webmin.sh
z2m-copy-data.sh
zwave-copy-data.sh
zwave-js-ui-update.sh
setup
vm
CHANGELOG.MD
LICENSE
README.md
22 lines
711 B
Bash
22 lines
711 B
Bash
#!/usr/bin/env bash
|
|
if command -v pveversion >/dev/null 2>&1; then echo -e "⚠️ Can't Run from the Proxmox Shell"; exit; fi
|
|
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 .homeassistant
|
|
wget -O - https://get.hacs.xyz | bash -
|
|
|
|
# To install HACS run the following from the container (LXC) console
|
|
# bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/misc/hacs-core.sh)"
|
|
# Then add the integration in HA
|