340.noid revision 61981
130881Swosch#!/bin/sh -
230881Swosch#
350472Speter# $FreeBSD: head/etc/periodic/weekly/340.noid 61981 2000-06-23 01:18:31Z brian $
461981Sbrian#
530881Swosch
661981Sbrian# If there is a global system configuration file, suck it in.
761981Sbrian#
861981Sbrianif [ -r /etc/defaults/periodic.conf ]
961981Sbrianthen
1061981Sbrian    . /etc/defaults/periodic.conf
1161981Sbrian    source_periodic_confs
1261981Sbrianfi
1330881Swosch
1461981Sbriancase "$weekly_noid_enable" in
1561981Sbrian    [Yy][Ee][Ss])
1661981Sbrian	echo ""
1761981Sbrian	echo "Check for files with an unknown user or group:"
1830881Swosch
1961981Sbrian	find -H ${weekly_noid_dirs:-/} -fstype local \
2061981Sbrian	    \( -nogroup -o -nouser \) -print | sed 's/^/  /';;
2161981Sbrianesac
22