From b197869a23b981b0c4346f2eb230c82b638626ff Mon Sep 17 00:00:00 2001 From: m0duspwnens Date: Wed, 27 May 2020 13:46:30 -0400 Subject: [PATCH] remove logic for if states should run or not - https://github.com/Security-Onion-Solutions/securityonion-saltstack/issues/749 --- pillar/data/addtotab.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pillar/data/addtotab.sh b/pillar/data/addtotab.sh index a07dac0ea..9737111c6 100644 --- a/pillar/data/addtotab.sh +++ b/pillar/data/addtotab.sh @@ -49,10 +49,8 @@ if [ $TYPE == 'sensorstab' ]; then fi if [ $TYPE == 'evaltab' ]; then echo " monint: $MONINT" >> $local_salt_dir/pillar/data/$TYPE.sls - if [ -f $local_salt_dir/pillar/firewall/masterfw.sls ] ; then - salt-call state.apply grafana queue=True - salt-call state.apply utility queue=True - fi + salt-call state.apply grafana queue=True + salt-call state.apply utility queue=True fi #if [ $TYPE == 'nodestab' ]; then # echo " nodetype: $NODETYPE" >> $local_salt_dir/pillar/data/$TYPE.sls