From f42ab00a3141923bafd39bc5e140289399df3d24 Mon Sep 17 00:00:00 2001 From: Deckard Date: Fri, 24 Oct 2025 02:50:41 -0400 Subject: [PATCH] removes tail to let container exit --- scripts/auto-post-install.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/scripts/auto-post-install.sh b/scripts/auto-post-install.sh index 022c2ab..c196d30 100755 --- a/scripts/auto-post-install.sh +++ b/scripts/auto-post-install.sh @@ -48,9 +48,8 @@ if [ -f "/install-markers/post-install-completed" ]; then echo "✅ Post-install configuration already completed" echo "â„šī¸ Marker file found: /install-markers/post-install-completed" echo "🔄 To re-run post-install configuration, delete the marker file and restart this container" - echo "" - echo "🏃 Keeping container alive for manual operations..." - tail -f /dev/null + echo "🏁 Nothing else to do; exiting." + exit 0 else echo "🆕 New installation detected - running post-install configuration..." echo "" @@ -155,6 +154,6 @@ else echo -e "${GREEN}âš”ī¸ Your realm has been blessed and configured! âš”ī¸${NC}" echo -e "${GREEN}🏰 All post-installation rituals completed${NC}" echo -e "${GREEN}đŸ—Ąī¸ Your realm awaits brave adventurers!${NC}" - echo "" - tail -f /dev/null + echo "🏁 Post-install tasks finished; exiting." + exit 0 fi