From 12e0782bb7aa331fc752a71de7a2814a1bb738fe Mon Sep 17 00:00:00 2001 From: Paul Wilde <31094984+pswilde@users.noreply.github.com> Date: Thu, 13 Feb 2025 20:01:13 +0000 Subject: [PATCH] Put sleep delay before starting jail instead of after --- usr/local/etc/rc.d/bastille | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/local/etc/rc.d/bastille b/usr/local/etc/rc.d/bastille index be5c1b0e..15420986 100755 --- a/usr/local/etc/rc.d/bastille +++ b/usr/local/etc/rc.d/bastille @@ -59,9 +59,9 @@ bastille_start() fi for _jail in ${bastille_ordered_list}; do + sleep ${bastille_startup_delay} echo "Starting Bastille Container: ${_jail}" ${command} start ${_jail} - sleep ${bastille_startup_delay} done }