From 35a0b0a182269d0f0a36d1ac9046dc7175372e08 Mon Sep 17 00:00:00 2001 From: Frederic Lepied Date: Tue, 5 Feb 2002 02:34:25 +0000 Subject: back to nogroup --- cron-sh/security_check.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cron-sh/security_check.sh') diff --git a/cron-sh/security_check.sh b/cron-sh/security_check.sh index d3de842..ea40eac 100755 --- a/cron-sh/security_check.sh +++ b/cron-sh/security_check.sh @@ -36,10 +36,10 @@ fi if [[ ${CHECK_UNOWNED} == yes ]]; then if [[ -s ${UNOWNED_USER_TODAY} ]]; then printf "\nSecurity Warning : User Unowned files found :\n" >> ${SECURITY} - printf "\t( theses files now have user \"nobody\" as their owner. )\n" >> ${SECURITY} + printf "\t( theses files now have user \"nogroup\" as their owner. )\n" >> ${SECURITY} cat ${UNOWNED_USER_TODAY} | awk '{print "\t\t- " $0}' >> ${SECURITY} cat ${UNOWNED_USER_TODAY} | while read line; do - chown nobody "${line}"; # Use quote if filename contain space. + chown nogroup "${line}"; # Use quote if filename contain space. done fi -- cgit v1.2.1