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
echo ""
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
else
echo "Auth is already enabled."