From 85176e35da8027e61532aa5b7c1ad0059940f886 Mon Sep 17 00:00:00 2001 From: Barry McCormick Date: Fri, 7 Aug 2020 09:24:24 -0700 Subject: [PATCH] update to include Bastillefile as a valid HOOK in verify process --- usr/local/share/bastille/verify.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/local/share/bastille/verify.sh b/usr/local/share/bastille/verify.sh index c2dc6d19..179f8383 100644 --- a/usr/local/share/bastille/verify.sh +++ b/usr/local/share/bastille/verify.sh @@ -54,7 +54,7 @@ verify_template() { _template_path=${bastille_templatesdir}/${BASTILLE_TEMPLATE} _hook_validate=0 - for _hook in TARGET INCLUDE PRE OVERLAY FSTAB PF PKG SYSRC SERVICE CMD; do + for _hook in TARGET INCLUDE PRE OVERLAY FSTAB PF PKG SYSRC SERVICE CMD Bastillefile; do _path=${_template_path}/${_hook} if [ -s "${_path}" ]; then _hook_validate=$((_hook_validate+1))