From c4172250c07486fee69c2c85220d6cbeb353ab29 Mon Sep 17 00:00:00 2001 From: Christer Edwards Date: Fri, 22 Nov 2019 21:59:39 -0700 Subject: [PATCH] updating output to RC script --- usr/local/etc/rc.d/bastille | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/local/etc/rc.d/bastille b/usr/local/etc/rc.d/bastille index 7fd4f50a..0d79ae0d 100755 --- a/usr/local/etc/rc.d/bastille +++ b/usr/local/etc/rc.d/bastille @@ -37,7 +37,7 @@ bastille_start() local _jail for _jail in ${bastille_list}; do - echo "Starting Bastille Jail: ${_jail}" + echo "Starting Bastille Container: ${_jail}" ${command} start ${_jail} done } @@ -52,7 +52,7 @@ bastille_stop() local _jail for _jail in ${bastille_list}; do - echo "Stopping Bastille Jail: ${_jail}" + echo "Stopping Bastille Container: ${_jail}" ${command} stop ${_jail} done }