[AUTH-9408] both backslash and brackets needs to be individually escaped

This commit is contained in:
Michael Boelen 2019-08-08 15:05:23 +02:00
parent fdc2977575
commit 3006b8dd26
No known key found for this signature in database
GPG Key ID: 26141F77A09D7F04
1 changed files with 1 additions and 1 deletions

View File

@ -1393,7 +1393,7 @@
LogText "Result: did not find ${ROOTDIR}var/log/tallylog on disk or its file size is zero bytes"
fi
# Determine if pam_tally2 is available
for D in $(GetReportData --key "pam_module\\[\\]"); do
for D in $(GetReportData --key "pam_module\\\[\\\]"); do
if ContainsString "pam_tally2" "${D}"; then
LogText "Result: found pam_tally2 module on disk"
FOUND_PAM_TALLY2=1