From 0997cb13c555ced4ef1420cbe8a8f4f86c2ba5f4 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 11 Jan 2022 14:54:05 +0100 Subject: [PATCH] Delete 93-apps_install.sh --- webtop/rootfs/etc/cont-init.d/93-apps_install.sh | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 webtop/rootfs/etc/cont-init.d/93-apps_install.sh diff --git a/webtop/rootfs/etc/cont-init.d/93-apps_install.sh b/webtop/rootfs/etc/cont-init.d/93-apps_install.sh deleted file mode 100644 index 748e39481..000000000 --- a/webtop/rootfs/etc/cont-init.d/93-apps_install.sh +++ /dev/null @@ -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