1997-11-01 15:03:05 +00:00
|
|
|
#!/bin/sh -
|
|
|
|
#
|
1999-08-27 23:37:10 +00:00
|
|
|
# $FreeBSD$
|
2000-06-23 01:18:31 +00:00
|
|
|
#
|
1997-11-01 15:03:05 +00:00
|
|
|
|
2000-06-23 01:18:31 +00:00
|
|
|
# If there is a global system configuration file, suck it in.
|
|
|
|
#
|
|
|
|
if [ -r /etc/defaults/periodic.conf ]
|
|
|
|
then
|
|
|
|
. /etc/defaults/periodic.conf
|
|
|
|
source_periodic_confs
|
|
|
|
fi
|
1997-11-01 15:03:05 +00:00
|
|
|
|
2000-06-23 01:18:31 +00:00
|
|
|
case "$weekly_noid_enable" in
|
|
|
|
[Yy][Ee][Ss])
|
|
|
|
echo ""
|
|
|
|
echo "Check for files with an unknown user or group:"
|
1997-11-01 15:03:05 +00:00
|
|
|
|
2001-05-31 09:53:53 +00:00
|
|
|
rc=$(find -H ${weekly_noid_dirs:-/} \
|
|
|
|
\( ! -fstype local -prune -or -name \* \) -and \
|
2000-09-14 17:19:15 +00:00
|
|
|
\( -nogroup -o -nouser \) -print | sed 's/^/ /' |
|
|
|
|
tee /dev/stderr | wc -l)
|
2001-05-31 09:53:53 +00:00
|
|
|
[ $rc -gt 1 ] && rc=1
|
|
|
|
;;
|
2000-09-14 17:19:15 +00:00
|
|
|
|
|
|
|
*) rc=0;;
|
2000-06-23 01:18:31 +00:00
|
|
|
esac
|
2000-09-14 17:19:15 +00:00
|
|
|
|
|
|
|
exit $rc
|