From 1d14badc4a6023527516718f2e45eb9a3c446206 Mon Sep 17 00:00:00 2001 From: Christopher Kepes Date: Thu, 29 Feb 2024 11:40:55 +0100 Subject: [PATCH] Fixed rcorder startup (added -a to basename) --- 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 beaa5a71..f90be337 100755 --- a/usr/local/etc/rc.d/bastille +++ b/usr/local/etc/rc.d/bastille @@ -41,7 +41,7 @@ restart_cmd="bastille_stop && bastille_start" rcordered_list() { local _jailsdir _jailsdir=$(. $bastille_conf; echo $bastille_jailsdir) - bastille_ordered_list=$(rcorder -s nostart ${_jailsdir}/*/jail.conf | xargs dirname | xargs basename | tr "\n" " ") + bastille_ordered_list=$(rcorder -s nostart ${_jailsdir}/*/jail.conf | xargs dirname | xargs basename -a | tr "\n" " ") } bastille_start()