From 9392d8d7a4aafe4f778cafe9985a7bfd59769924 Mon Sep 17 00:00:00 2001 From: tschettervictor <85497460+tschettervictor@users.noreply.github.com> Date: Fri, 2 May 2025 08:22:38 -0600 Subject: [PATCH] setup: Exit after auto configuring --- usr/local/share/bastille/setup.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/usr/local/share/bastille/setup.sh b/usr/local/share/bastille/setup.sh index a48c3879..ecb954ff 100644 --- a/usr/local/share/bastille/setup.sh +++ b/usr/local/share/bastille/setup.sh @@ -239,6 +239,8 @@ if [ $# -eq 0 ]; then configure_loopback_interface configure_pf configure_zfs + info "\nBastille has successfully been configured.\n" + exit 0 fi # Handle options. @@ -318,4 +320,4 @@ case "$1" in *) error_exit "[ERROR]: Unknown option: \"${1}\"" ;; -esac \ No newline at end of file +esac