Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Sjögren <konstruktoid@users.noreply.github.com>2020-03-24 13:44:54 +0300
committerThomas Sjögren <konstruktoid@users.noreply.github.com>2020-03-24 13:45:05 +0300
commit0b9e2d85d6a593bc4f71565d9756d129a1859e27 (patch)
tree57729a1e84192f0ed028ae0a37540a1357e4a8b8 /include/tests_authentication
parent5341fa7b29dbd32db32a11934d1b2eef3c022d72 (diff)
fix tabs
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
Diffstat (limited to 'include/tests_authentication')
-rw-r--r--include/tests_authentication6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/tests_authentication b/include/tests_authentication
index c5c71eee..c3c072f5 100644
--- a/include/tests_authentication
+++ b/include/tests_authentication
@@ -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):"