diff options
-rwxr-xr-x | cron-sh/security_check.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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 |