ha_autoapps script

This commit is contained in:
Alexandre
2023-09-09 19:24:52 +02:00
parent f79352608d
commit 2c2502f575
82 changed files with 189 additions and 566 deletions

26
.templates/ha_autoapps.sh Normal file
View File

@@ -0,0 +1,26 @@
#!/bin/sh
# shellcheck disable=SC2015
##############################
# Automatic apps download #
##############################
PACKAGES="$1"
# Install bash if needed
if ! command -v bash >/dev/null 2>/dev/null; then
(apt-get update && apt-get install -yqq --no-install-recommends bash || apk add --no-cache bash) >/dev/null
fi
# Install curl if needed
if ! command -v curl >/dev/null 2>/dev/null; then
(apt-get update && apt-get install -yqq --no-install-recommends curl || apk add --no-cache curl) >/dev/null
fi
# Call apps installer script if needed
curl -f -L -s -S "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/automatic_packages.sh" --output /automatic_packages.sh
chmod 777 /automatic_packages.sh
eval /./automatic_packages.sh "${PACKAGES:-}"
# Clean
rm /automatic_packages.sh