Delete 93-apps_install.sh

This commit is contained in:
Alexandre
2022-01-11 14:54:05 +01:00
committed by GitHub
parent 154a326173
commit 0997cb13c5

View File

@@ -1,13 +0,0 @@
#!/usr/bin/with-contenv bashio
if bashio::config.has_value 'additional_apps'; then
bashio::log.info "Installing additional apps :"
apt-get update &>/dev/null
# Install apps
for APP in $(echo "$(bashio::config 'additional_apps')" | tr "," " "); do
bashio::log.green "... $APP"
apt-get install -yqq $APP &>/dev/null \
&& bashio::log.green "... done" \
|| bashio::log.red "... not successful"
done
fi