Merge pull request #13648 from Security-Onion-Solutions/TOoSmOotH-patch-2

Make Standalone installs use Suricata for PCAP
This commit is contained in:
Mike Reeves
2024-09-10 15:27:16 -04:00
committed by GitHub

View File

@@ -1330,8 +1330,8 @@ create_global() {
echo " registry_host: '$HOSTNAME'" >> $global_pillar_file echo " registry_host: '$HOSTNAME'" >> $global_pillar_file
echo " endgamehost: '$ENDGAMEHOST'" >> $global_pillar_file echo " endgamehost: '$ENDGAMEHOST'" >> $global_pillar_file
if [ "$install_type" = 'EVAL' ]; then if [[ $is_standalone || $is_eval ]]; then
echo " pcapengine: SURICATA" >> $global_pillar_file echo " pcapengine: SURICATA" >> $global_pillar_file
fi fi
} }