Merge pull request #4562 from Security-Onion-Solutions/kilo

Fix wrong grep file
This commit is contained in:
Mike Reeves
2021-06-17 21:19:05 -04:00
committed by GitHub

View File

@@ -45,7 +45,7 @@ if [[ "$authEnable" == "true" ]]; then
if grep -q "argon" "$ES_USERS_FILE"; then if grep -q "argon" "$ES_USERS_FILE"; then
echo "" echo ""
echo "IMPORTANT: The following users will need to change their password, after logging into SOC, in order to access Kibana:" echo "IMPORTANT: The following users will need to change their password, after logging into SOC, in order to access Kibana:"
grep argon "$ES_USERS" | cut -d ":" -f 1 grep argon "$ES_USERS_FILE" | cut -d ":" -f 1
fi fi
else else
echo "Auth is already enabled." echo "Auth is already enabled."