add blank line after each jail on multiple targets

This commit is contained in:
tschettervictor
2025-04-29 18:54:34 -06:00
parent 8e10f14221
commit f423446370
19 changed files with 60 additions and 7 deletions

View File

@@ -86,12 +86,17 @@ bastille_root_check
set_target "${TARGET}"
for _jail in ${JAILS}; do
echo ""
info "[${_jail}]:"
check_target_is_running "${_jail}" || if [ "${AUTO}" -eq 1 ]; then
bastille start "${_jail}"
else
error_notify "Jail is not running."
error_continue "Use [-a|--auto] to auto-start the jail."
fi
jexec -l "${_jail}" /usr/sbin/sysrc "$@"
done