340.noid revision 61981
1#!/bin/sh -
2#
3# $FreeBSD: head/etc/periodic/weekly/340.noid 61981 2000-06-23 01:18:31Z brian $
4#
5
6# If there is a global system configuration file, suck it in.
7#
8if [ -r /etc/defaults/periodic.conf ]
9then
10    . /etc/defaults/periodic.conf
11    source_periodic_confs
12fi
13
14case "$weekly_noid_enable" in
15    [Yy][Ee][Ss])
16	echo ""
17	echo "Check for files with an unknown user or group:"
18
19	find -H ${weekly_noid_dirs:-/} -fstype local \
20	    \( -nogroup -o -nouser \) -print | sed 's/^/  /';;
21esac
22