mirror of https://github.com/CISOfy/lynis.git
Fix find fields in new profile format
New format uses permfile= so it needs a new cut to filter the name file
This commit is contained in:
parent
022f427a69
commit
4d5a0c59c7
|
@ -34,7 +34,7 @@
|
|||
LogText "Test: Checking file permissions"
|
||||
for PROFILE in ${PROFILES}; do
|
||||
LogText "Using profile ${PROFILE} for baseline."
|
||||
FIND=$(${EGREPBINARY} '^permfile=|^permdir=' ${PROFILE} | ${CUTBINARY} -d= -f2)
|
||||
FIND=$(${EGREPBINARY} '^permfile=|^permdir=' ${PROFILE} | ${CUTBINARY} -d= -f2 | ${CUTBINARY} -d: -f1)
|
||||
for I in ${FIND}; do
|
||||
LogText "Checking ${I}"
|
||||
CheckFilePermissions "${I}"
|
||||
|
|
Loading…
Reference in New Issue