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
|
|
|
|
2000-06-23 01:18:31 +00:00
|
|
|
find -H ${weekly_noid_dirs:-/} -fstype local \
|
|
|
|
\( -nogroup -o -nouser \) -print | sed 's/^/ /';;
|
|
|
|
esac
|