From 7668927f6db6699598bb06c4df41af02fe71a13f Mon Sep 17 00:00:00 2001 From: Christer Edwards Date: Mon, 25 Nov 2019 08:10:29 -0700 Subject: [PATCH] regression in not using full path to bastille --- usr/local/share/bastille/start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/local/share/bastille/start.sh b/usr/local/share/bastille/start.sh index 4eafe2e3..4ce681d6 100644 --- a/usr/local/share/bastille/start.sh +++ b/usr/local/share/bastille/start.sh @@ -51,10 +51,10 @@ TARGET="${1}" shift if [ "${TARGET}" = 'ALL' ]; then - JAILS=$(bastille list jails) + JAILS=$(/usr/local/bin/bastille list jails) fi if [ "${TARGET}" != 'ALL' ]; then - JAILS=$(bastille list jails | grep -w "${TARGET}") + JAILS=$(/usr/local/bin/bastille list jails | grep -w "${TARGET}") fi for _jail in ${JAILS}; do