From d917dd57028c9c2d3ca547b46e8fd5afa761674b Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 3 Mar 2025 09:23:17 +0100 Subject: [PATCH] Update 31-checks.sh --- birdnet-pi/rootfs/etc/cont-init.d/31-checks.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/birdnet-pi/rootfs/etc/cont-init.d/31-checks.sh b/birdnet-pi/rootfs/etc/cont-init.d/31-checks.sh index 3805c10a7..cbb038d8c 100755 --- a/birdnet-pi/rootfs/etc/cont-init.d/31-checks.sh +++ b/birdnet-pi/rootfs/etc/cont-init.d/31-checks.sh @@ -2,6 +2,14 @@ # shellcheck shell=bash set -e +# Save a copy of the script for further restarts +if [ -f /etc/cont-init.d/99-run.sh ]; then + mkdir -p /etc/scripts-init + sed -i "s|/etc/cont-init.d|/etc/scripts-init|g" /ha_entrypoint.sh + sed -i "/ rm/d" /ha_entrypoint.sh + cp /etc/cont-init.d/99-run.sh /etc/scripts-init/ +fi + ###################### # CHECK BIRDNET.CONF # ######################