🗃️ Committing everything that changed 🗃️

rootfs/usr/local/etc/docker/functions/entrypoint.sh
rootfs/usr/local/etc/docker/init.d/00-tftpd.sh
rootfs/usr/local/etc/docker/init.d/zz-nginx.sh
This commit is contained in:
casjay
2024-07-14 18:37:48 -04:00
parent 3f6cb9ee2c
commit 6318dc754e
3 changed files with 14 additions and 15 deletions

View File

@@ -501,10 +501,9 @@ __start_init_scripts() {
for init in "$init_dir"/*.sh; do
if [ -f "$init" ]; then
name="$(basename "$init")"
sleep 10 && (exec "$init" &) && sleep 10 || false
sleep 10 && sh -c "$init" && sleep 20 || false
initStatus=$(($? + initStatus))
echo ""
sleep 20
fi
done
fi