2023-03-22 20:48:20 -04:00
|
|
|
#!/usr/bin/env bash
|
2025-04-01 10:25:46 +02:00
|
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
2026-01-06 13:28:12 +01:00
|
|
|
# Copyright (c) 2021-2026 tteck
|
2023-03-22 20:48:20 -04:00
|
|
|
# Author: tteck (tteckster)
|
2024-12-16 12:42:51 +01:00
|
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
|
|
|
# Source: https://www.home-assistant.io/
|
2023-03-22 20:48:20 -04:00
|
|
|
|
|
|
|
|
APP="Home Assistant"
|
2025-04-10 11:56:52 +02:00
|
|
|
var_tags="${var_tags:-automation;smarthome}"
|
|
|
|
|
var_cpu="${var_cpu:-2}"
|
|
|
|
|
var_ram="${var_ram:-2048}"
|
|
|
|
|
var_disk="${var_disk:-16}"
|
|
|
|
|
var_os="${var_os:-debian}"
|
Bump K to H-Scripts to Debian 13 (Trixie) (#8597)
* Update scripts to use Debian 13 and improve update logic
Bump default container OS version from Debian 12 to 13 across multiple LXC setup scripts. Refactor update_script functions for consistency, improve messaging, and standardize apt usage. Update Kimai install and update scripts to use setup_php, setup_composer, and fetch_and_deploy_gh_release helpers, and switch from MySQL to MariaDB. Update Kometa to use Python 3.13. Minor improvements to backup, cleanup, and service management steps in several scripts.
* Refactor install scripts: unify cleanup and apt usage
Replaces repeated apt-get commands with apt for installing dependencies, and consolidates cleanup steps into a single cleanup_lxc function across all install scripts. Also updates repository setup to use setup_deb822_repo where applicable, and makes minor improvements to dependency installation and service setup.
* Update default Debian version to 13 and refactor updates
Set the default Debian version to 13 across all container scripts. Standardize apt command usage by replacing 'apt-get' with 'apt' where appropriate. Remove redundant cleanup steps from update scripts and streamline update logic for consistency. Also, call 'cleanup_lxc' after 'update_script' in the build function.
* Update default OS version to Debian 13 in JSON configs
Updated the 'version' field from '12' to '13' for Debian-based install methods across multiple application JSON files. Also set default OS and version for inspircd. This ensures new containers use the latest supported Debian release.
* fix kimai Update Check
* grammar
* Correct typo in success message
* Fix typo in success message for update
* refactor
* fixed jenkins / improve komodo
---------
Co-authored-by: Tobias <96661824+CrazyWolf13@users.noreply.github.com>
2025-11-12 10:56:18 +01:00
|
|
|
var_version="${var_version:-13}"
|
2025-04-10 11:56:52 +02:00
|
|
|
var_unprivileged="${var_unprivileged:-1}"
|
2024-12-16 12:42:51 +01:00
|
|
|
|
|
|
|
|
header_info "$APP"
|
2023-03-22 20:48:20 -04:00
|
|
|
variables
|
|
|
|
|
color
|
|
|
|
|
catch_errors
|
|
|
|
|
|
|
|
|
|
function update_script() {
|
2024-11-18 21:09:10 +01:00
|
|
|
header_info
|
|
|
|
|
check_container_storage
|
|
|
|
|
check_container_resources
|
2023-03-22 20:48:20 -04:00
|
|
|
if [[ ! -d /var/lib/docker/volumes/hass_config/_data ]]; then
|
|
|
|
|
msg_error "No ${APP} Installation Found!"
|
|
|
|
|
exit
|
|
|
|
|
fi
|
remove whiptail from update scripts for unattended update support (#11712)
* Simplify Alpine update scripts to run upgrade
Remove interactive whiptail menus, loops and newt dependency checks from ct/alpine-docker.sh, ct/alpine-zigbee2mqtt.sh, and ct/alpine.sh. Each update_script now simply calls header_info, runs $STD apk -U upgrade, displays a success message and exits, simplifying and automating the update flow.
* feat(update-scripts): replace whiptail with msg_menu for unattended updates
Remove all whiptail dialogs from ct update_script() functions and replace
with msg_menu() - a lightweight read-based menu that supports:
- PHS_SILENT=1: auto-selects first (default) option for unattended mode
- Interactive: numbered menu with 10s timeout and default fallback
Converted scripts (whiptail menu → msg_menu):
- plex.sh, npmplus.sh, cronicle.sh, meilisearch.sh, node-red.sh
- homeassistant.sh, podman-homeassistant.sh
- vaultwarden.sh, alpine-vaultwarden.sh
- loki.sh, alpine-loki.sh
- alpine-grafana.sh, alpine-redis.sh, alpine-valkey.sh
- alpine-nextcloud.sh
Simplified scripts (removed unnecessary whiptail for single-action updates):
- alpine.sh, alpine-docker.sh, alpine-zigbee2mqtt.sh
Special handling:
- gitea-mirror.sh: replaced yesno/msgbox with read -rp confirmations,
exit 75 in silent mode for major version upgrades requiring interaction
- vaultwarden.sh/alpine-vaultwarden.sh: passwordbox replaced with
read -r -s -p, skipped in silent mode with warning
- nginxproxymanager.sh: exit 1 → exit 75 for disabled script
Infrastructure:
- Added msg_menu() helper to misc/build.func
- Added exit code 75 handling in update-apps.sh (skip, not fail)
Closes #11620
* refactor(update-scripts): remove menus where sequential updates suffice
- alpine-nextcloud: add apk upgrade as the update action (was missing)
- meilisearch: run meilisearch + UI updates sequentially (like bar-assistant)
- npmplus: run alpine upgrade + docker pull sequentially, no menu
- vaultwarden: update VaultWarden + Web-Vault sequentially, remove admin
token option (interactive-only, not suitable for unattended updates)
- alpine-vaultwarden: just run apk upgrade, remove admin token menu
2026-02-09 11:05:31 +01:00
|
|
|
UPD=$(msg_menu "Home Assistant Update Options" \
|
|
|
|
|
"1" "Update ALL Containers" \
|
|
|
|
|
"2" "Remove ALL Unused Images" \
|
|
|
|
|
"3" "Install HACS" \
|
|
|
|
|
"4" "Install FileBrowser")
|
2024-11-18 21:09:10 +01:00
|
|
|
|
2023-03-22 20:48:20 -04:00
|
|
|
if [ "$UPD" == "1" ]; then
|
|
|
|
|
msg_info "Updating All Containers"
|
|
|
|
|
CONTAINER_LIST="${1:-$(docker ps -q)}"
|
|
|
|
|
for container in ${CONTAINER_LIST}; do
|
2025-05-10 15:23:43 +02:00
|
|
|
CONTAINER_IMAGE="$(docker inspect --format "{{.Config.Image}}" --type container "${container}")"
|
2023-03-22 20:48:20 -04:00
|
|
|
RUNNING_IMAGE="$(docker inspect --format "{{.Image}}" --type container "${container}")"
|
|
|
|
|
docker pull "${CONTAINER_IMAGE}"
|
|
|
|
|
LATEST_IMAGE="$(docker inspect --format "{{.Id}}" --type image "${CONTAINER_IMAGE}")"
|
|
|
|
|
if [[ "${RUNNING_IMAGE}" != "${LATEST_IMAGE}" ]]; then
|
2025-02-12 22:57:00 -08:00
|
|
|
pip install -U runlike
|
2023-03-22 20:48:20 -04:00
|
|
|
echo "Updating ${container} image ${CONTAINER_IMAGE}"
|
2025-02-09 01:23:37 -08:00
|
|
|
DOCKER_COMMAND="$(runlike --use-volume-id "${container}")"
|
2023-03-22 20:48:20 -04:00
|
|
|
docker rm --force "${container}"
|
2025-05-10 15:23:43 +02:00
|
|
|
eval "${DOCKER_COMMAND}"
|
2023-03-22 20:48:20 -04:00
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
msg_ok "Updated All Containers"
|
|
|
|
|
exit
|
|
|
|
|
fi
|
|
|
|
|
if [ "$UPD" == "2" ]; then
|
|
|
|
|
msg_info "Removing ALL Unused Images"
|
|
|
|
|
docker image prune -af
|
|
|
|
|
msg_ok "Removed ALL Unused Images"
|
|
|
|
|
exit
|
|
|
|
|
fi
|
|
|
|
|
if [ "$UPD" == "3" ]; then
|
2023-11-05 22:52:56 +01:00
|
|
|
msg_info "Installing Home Assistant Community Store (HACS)"
|
2025-02-24 12:49:16 +01:00
|
|
|
$STD apt update
|
2023-03-22 20:48:20 -04:00
|
|
|
cd /var/lib/docker/volumes/hass_config/_data
|
2025-02-24 12:49:16 +01:00
|
|
|
$STD bash <(curl -fsSL https://get.hacs.xyz)
|
2023-11-05 22:52:56 +01:00
|
|
|
msg_ok "Installed Home Assistant Community Store (HACS)"
|
2023-03-22 20:48:20 -04:00
|
|
|
echo -e "\n Reboot Home Assistant and clear browser cache then Add HACS integration.\n"
|
|
|
|
|
exit
|
|
|
|
|
fi
|
|
|
|
|
if [ "$UPD" == "4" ]; then
|
|
|
|
|
msg_info "Installing FileBrowser"
|
2023-08-02 20:10:12 -04:00
|
|
|
RELEASE=$(curl -fsSL https://api.github.com/repos/filebrowser/filebrowser/releases/latest | grep -o '"tag_name": ".*"' | sed 's/"//g' | sed 's/tag_name: //g')
|
2025-02-24 12:49:16 +01:00
|
|
|
$STD curl -fsSL https://github.com/filebrowser/filebrowser/releases/download/v2.23.0/linux-amd64-filebrowser.tar.gz | tar -xzv -C /usr/local/bin
|
|
|
|
|
$STD filebrowser config init -a '0.0.0.0'
|
|
|
|
|
$STD filebrowser config set -a '0.0.0.0'
|
|
|
|
|
$STD filebrowser users add admin helper-scripts.com --perm.admin
|
2023-03-22 20:48:20 -04:00
|
|
|
msg_ok "Installed FileBrowser"
|
|
|
|
|
|
|
|
|
|
msg_info "Creating Service"
|
|
|
|
|
service_path="/etc/systemd/system/filebrowser.service"
|
|
|
|
|
echo "[Unit]
|
|
|
|
|
Description=Filebrowser
|
|
|
|
|
After=network-online.target
|
|
|
|
|
[Service]
|
|
|
|
|
User=root
|
|
|
|
|
WorkingDirectory=/root/
|
|
|
|
|
ExecStart=/usr/local/bin/filebrowser -r /
|
|
|
|
|
[Install]
|
|
|
|
|
WantedBy=default.target" >$service_path
|
|
|
|
|
|
2025-04-01 20:22:40 +02:00
|
|
|
$STD systemctl enable --now filebrowser
|
2023-03-22 20:48:20 -04:00
|
|
|
msg_ok "Created Service"
|
|
|
|
|
|
2026-01-06 22:57:40 +01:00
|
|
|
msg_ok "Completed successfully!\n"
|
2023-03-22 20:48:20 -04:00
|
|
|
echo -e "FileBrowser should be reachable by going to the following URL.
|
2026-01-19 16:33:08 +01:00
|
|
|
${BL}http://$LOCAL_IP:8080${CL} admin|helper-scripts.com\n"
|
2023-03-22 20:48:20 -04:00
|
|
|
exit
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
start
|
|
|
|
|
build_container
|
|
|
|
|
description
|
|
|
|
|
|
2026-01-06 22:57:40 +01:00
|
|
|
msg_ok "Completed successfully!\n"
|
2024-12-16 12:42:51 +01:00
|
|
|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
|
|
|
|
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
|
|
|
|
|
echo -e "${TAB}${GATEWAY}${BGN}HA: http://${IP}:8123${CL}"
|
2025-05-10 15:23:43 +02:00
|
|
|
echo -e "${TAB}${GATEWAY}${BGN}Portainer: https://${IP}:9443${CL}"
|