From 0d0b5bdefbb8a4fced3d7252d419f4e4b0e9da29 Mon Sep 17 00:00:00 2001 From: doug Date: Sat, 29 Jun 2019 07:05:54 -0400 Subject: [PATCH] soup: if snort or suricata are updated, remind user to run rule-update Security-Onion-Solutions/security-onion#1536 --- bin/soup | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/soup b/bin/soup index 1bad874..b4629b8 100755 --- a/bin/soup +++ b/bin/soup @@ -371,19 +371,19 @@ if [ -f /etc/nsm/sensortab ] && [ $(grep -v "^#" /etc/nsm/sensortab | wc -l) -gt # If Snort updated, remind user to review snort.conf if [ $SNORT == "yes" ]; then echo - echo "Snort has been updated. Please review snort.conf and manually re-apply any local customizations." + echo "Snort has been updated. Please review your snort.conf file(s) and manually re-apply any local customizations. You may also need to run rule-update to update your NIDS rules." fi # If Suricata updated, remind user to review suricata.yaml if [ $SURICATA == "yes" ]; then echo - echo "Suricata has been updated. Please review suricata.yaml and manually re-apply any local customizations." + echo "Suricata has been updated. Please review your suricata.yaml file(s) and manually re-apply any local customizations. You may also need to run rule-update to update your NIDS rules." fi # If Bro updated, remind user to review Bro config if [ $BRO == "yes" ]; then echo - echo "Bro has been updated. Please review Bro configuration and manually re-apply any local customizations." + echo "Bro has been updated. Please review your Bro configuration and manually re-apply any local customizations." fi fi