From d6393d45720f90eb67620d5bc869857310ecb256 Mon Sep 17 00:00:00 2001 From: tschettervictor <85497460+tschettervictor@users.noreply.github.com> Date: Fri, 26 Sep 2025 09:25:35 -0600 Subject: [PATCH] update: fix updating an EOL jail --- usr/local/share/bastille/update.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/usr/local/share/bastille/update.sh b/usr/local/share/bastille/update.sh index 161502a4..9f5e258a 100644 --- a/usr/local/share/bastille/update.sh +++ b/usr/local/share/bastille/update.sh @@ -144,7 +144,13 @@ jail_update() { -j "${_jailname}" \ -d "${_workdir}" \ -f "${_freebsd_update_conf}" \ - fetch install + fetch + env PAGER="/bin/cat" freebsd-update ${OPTION} \ + --not-running-from-cron \ + -j "${_jailname}" \ + -d "${_workdir}" \ + -f "${_freebsd_update_conf}" \ + install fi fi }