mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-05-06 08:58:09 +02:00
New PACKAGES logic
This commit is contained in:
@@ -6,11 +6,12 @@ if [ ! -f "/usr/bin/bashio" ]; then
|
||||
################
|
||||
# Install apps #
|
||||
################
|
||||
apk add --no-cache \
|
||||
jq \
|
||||
curl \
|
||||
cifs-utils \
|
||||
nginx
|
||||
PACKAGES="${PACKAGES:="curl"}"
|
||||
|
||||
apt-get clean \
|
||||
&& apt-get update \
|
||||
&& apt-get install -y --no-install-recommends ${PACKAGES} 2>/dev/null \
|
||||
|| apk add --no-cache ${PACKAGES}
|
||||
|
||||
###################
|
||||
# Install bashio #
|
||||
@@ -23,13 +24,6 @@ if [ ! -f "/usr/bin/bashio" ]; then
|
||||
ln -s /usr/lib/bashio/bashio /usr/bin/bashio
|
||||
rm -rf /tmp/bashio
|
||||
|
||||
###################
|
||||
# Install tempio #
|
||||
##################
|
||||
curl -L -f -s -o /usr/bin/tempio \
|
||||
"https://github.com/home-assistant/tempio/releases/download/${TEMPIO_VERSION}/tempio_${BUILD_ARCH}" \
|
||||
&& chmod a+x /usr/bin/tempio
|
||||
|
||||
) >/dev/null
|
||||
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user