From 82db778dc442bef91a03d65bb6ec907d04e0755f Mon Sep 17 00:00:00 2001 From: Frederic Lepied Date: Tue, 5 Feb 2002 01:23:14 +0000 Subject: use nobody instead of nogroup --- cron-sh/security_check.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cron-sh') diff --git a/cron-sh/security_check.sh b/cron-sh/security_check.sh index 2b300ba..d3de842 100755 --- a/cron-sh/security_check.sh +++ b/cron-sh/security_check.sh @@ -45,10 +45,10 @@ if [[ ${CHECK_UNOWNED} == yes ]]; then if [[ -s ${UNOWNED_GROUP_TODAY} ]]; then printf "\nSecurity Warning : Group Unowned files found :\n" >> ${SECURITY} - printf "\t( theses files now have group \"nogroup\" as their group owner. )\n" >> ${SECURITY} + printf "\t( theses files now have group \"nobody\" as their group owner. )\n" >> ${SECURITY} cat ${UNOWNED_GROUP_TODAY} | awk '{print "\t\t- " $0}' >> ${SECURITY} cat ${UNOWNED_GROUP_TODAY} | while read line; do - chgrp nogroup "${line}"; # Use quote if filename contain space. + chgrp nobody "${line}"; # Use quote if filename contain space. done fi fi -- cgit v1.2.1