From 49b25a4ad7ee2d20ec27c397529aa32aa535d548 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 12 Feb 2023 20:42:25 +0100 Subject: [PATCH] Delete 99-custom_scripts.sh --- .../rootfs/etc/cont-init.d/99-custom_scripts.sh | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100755 nextcloud/rootfs/etc/cont-init.d/99-custom_scripts.sh diff --git a/nextcloud/rootfs/etc/cont-init.d/99-custom_scripts.sh b/nextcloud/rootfs/etc/cont-init.d/99-custom_scripts.sh deleted file mode 100755 index 02871181d..000000000 --- a/nextcloud/rootfs/etc/cont-init.d/99-custom_scripts.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/with-contenv bashio -# shellcheck shell=bash - -for file in /config/addons_config/nextcloud/*.sh -do - if [ -e "$file" ]; then - bashio::log.info "Executing $file" - bash "$file" - fi -done - -# Use php7 -if [ -f /data/config/crontabs/root ]; then - sed -i "s|php7|php|g" /data/config/crontabs/root -fi