Merge pull request #10299 from Security-Onion-Solutions/dougburks-patch-1

FIX: Improve soup's local file modification logic #8972
This commit is contained in:
Doug Burks
2023-05-08 09:47:49 -04:00
committed by GitHub

View File

@@ -212,7 +212,7 @@ check_local_mods() {
if [[ -f $default_file ]]; then
file_diff=$(diff "$default_file" "$local_file" )
if [[ ! " ${local_ignore_arr[*]} " =~ " ${local_file} " ]]; then
if [[ $(echo "$file_diff" | grep -c "^<") -gt 0 ]]; then
if [[ $(echo "$file_diff" | grep -Ec "^[<>]") -gt 0 ]]; then
local_mod_arr+=( "$local_file" )
fi
fi