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:
authormboelen <michael@cisofy.com>2015-03-18 18:06:02 +0300
committermboelen <michael@cisofy.com>2015-03-18 18:06:02 +0300
commit9932e878b1b2b8ad64c85567069b46ba79b1e07d (patch)
tree76240bf8745d6f87520abf4850778893427ac3b4
parent0e321e1c6bad173df82b6cbb029d520bf89e9390 (diff)
Clarified message
-rw-r--r--include/functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions b/include/functions
index 120c2bfd..e2c14444 100644
--- a/include/functions
+++ b/include/functions
@@ -1172,7 +1172,7 @@
OWNERID=`ls -n $1 | awk -F" " '{ print $3 }'`
if [ ${PENTESTINGMODE} -eq 0 -a "${IS_PARAMETERS_FILE}" = "" ]; then
if [ ! "${OWNER}" = "root" -a ! "${OWNERID}" = "0" ]; then
- echo "Fatal error: file $1 should be owned by user 'root' or similar (found: ${OWNER})."
+ echo "Fatal error: file $1 should be owned by user 'root' when running it as root (found: ${OWNER})."
ExitFatal
fi
else