From 8350af9c4f824edcd2bed2e187ea0f80141bdfe4 Mon Sep 17 00:00:00 2001 From: Christer Edwards Date: Fri, 21 Feb 2020 20:04:17 -0700 Subject: [PATCH] overzealous quoting --- usr/local/share/bastille/template.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/local/share/bastille/template.sh b/usr/local/share/bastille/template.sh index f40d971..a54cb24 100644 --- a/usr/local/share/bastille/template.sh +++ b/usr/local/share/bastille/template.sh @@ -227,7 +227,7 @@ for _jail in ${JAILS}; do if [ -s "${bastille_template}/PKG" ]; then echo -e "${COLOR_GREEN}[${_jail}]:PKG -- START${COLOR_RESET}" jexec -l "${_jail}" env ASSUME_ALWAYS_YES=YES /usr/sbin/pkg bootstrap || exit 1 - jexec -l "${_jail}" env ASSUME_ALWAYS_YES=YES /usr/sbin/pkg install "$(cat "${bastille_template}/PKG")" || exit 1 + jexec -l "${_jail}" env ASSUME_ALWAYS_YES=YES /usr/sbin/pkg install $(cat "${bastille_template}/PKG") || exit 1 jexec -l "${_jail}" env ASSUME_ALWAYS_YES=YES /usr/sbin/pkg audit -F echo -e "${COLOR_GREEN}[${_jail}]:PKG -- END${COLOR_RESET}" echo