mirror of
https://github.com/CISOfy/lynis.git
synced 2025-07-27 15:54:09 +02:00
fix tabs
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
This commit is contained in:
parent
5341fa7b29
commit
0b9e2d85d6
@ -488,15 +488,15 @@
|
||||
|
||||
"NetBSD"|"OpenBSD")
|
||||
if [ -f ${ROOTDIR}etc/usermgmt.conf ]; then
|
||||
UID_RANGE=$(${GREPBINARY} "^range" ${ROOTDIR}etc/usermgmt.conf | ${AWKBINARY} '{ sub(/\.\./, "-", $2); print $2 }')
|
||||
UID_RANGE=$(${GREPBINARY} "^range" ${ROOTDIR}etc/usermgmt.conf | ${AWKBINARY} '{ sub(/\.\./, "-", $2); print $2 }')
|
||||
fi
|
||||
if [ -n "${UID_RANGE}" ]; then
|
||||
if [ -n "${UID_RANGE}" ]; then
|
||||
LogText "Result: found configured user id range specified: ${UID_RANGE}"
|
||||
UID_MIN=$(echo $UID_RANGE | ${AWKBINARY} -F- '{ print $1 }')
|
||||
UID_MAX=$(echo $UID_RANGE | ${AWKBINARY} -F- '{ print $2 }')
|
||||
else
|
||||
UID_MIN=1000
|
||||
UID_MAX=60000
|
||||
UID_MAX=60000
|
||||
LogText "Result: no configured user id range specified; using default ${UID_MIN}-${UID_MAX}"
|
||||
fi
|
||||
LogText "${OS} real users output (ID = 0, or ${UID_MIN}-${UID_MAX}, but not 32767):"
|
||||
|
Loading…
x
Reference in New Issue
Block a user