From 0cc060932155190f69908bfcca7007ab6d0680dd Mon Sep 17 00:00:00 2001 From: tschettervictor <85497460+tschettervictor@users.noreply.github.com> Date: Tue, 2 Dec 2025 15:31:12 -0500 Subject: [PATCH] update: better naming pattern --- usr/local/share/bastille/update.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/local/share/bastille/update.sh b/usr/local/share/bastille/update.sh index 863fcf0a..9b60da3d 100644 --- a/usr/local/share/bastille/update.sh +++ b/usr/local/share/bastille/update.sh @@ -184,7 +184,7 @@ jail_update() { UPDATED_RELEASE=$(/usr/sbin/jexec -l "${TARGET}" freebsd-version 2>/dev/null) if [ "${OLD_RELEASE}" != "${UPDATED_RELEASE}" ]; then bastille config ${TARGET} set osrelease ${UPDATED_RELEASE} >/dev/null - info "\nUpgrade complete: ${OLD_RELEASE} > ${UPDATED_RELEASE}\n" + info "\nUpdate complete: ${OLD_RELEASE} > ${UPDATED_RELEASE}\n" else info "\nNo updates available.\n" fi @@ -236,7 +236,7 @@ jail_update_pkgbase() { UPDATED_RELEASE=$(/usr/sbin/jexec -l "${TARGET}" freebsd-version 2>/dev/null) if [ "${OLD_RELEASE}" != "${UPDATED_RELEASE}" ]; then bastille config ${TARGET} set osrelease ${UPDATED_RELEASE} >/dev/null - info "\nUpgrade complete: ${OLD_RELEASE} > ${UPDATED_RELEASE}\n" + info "\nUpdate complete: ${OLD_RELEASE} > ${UPDATED_RELEASE}\n" else info "\nNo updates available.\n" fi