From owner-freebsd-isp Sat Feb 1 15:45:05 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA14834 for isp-outgoing; Sat, 1 Feb 1997 15:45:05 -0800 (PST) Received: from mail.cs.tu-berlin.de (root@mail.cs.tu-berlin.de [130.149.17.13]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA14812 for ; Sat, 1 Feb 1997 15:45:01 -0800 (PST) Received: from campa.panke.de (anonymous214.ppp.cs.tu-berlin.de [130.149.17.214]) by mail.cs.tu-berlin.de (8.8.5/8.8.5) with SMTP id AAA25780; Sun, 2 Feb 1997 00:40:59 +0100 (MET) Received: (from wosch@localhost) by campa.panke.de (8.6.12/8.6.12) id VAA01038; Sat, 1 Feb 1997 21:44:52 +0100 Date: Sat, 1 Feb 1997 21:44:52 +0100 From: Wolfram Schneider Message-Id: <199702012044.VAA01038@campa.panke.de> To: Joe Greco Cc: Don.Lewis@tsc.tdk.com (Don Lewis), freebsd-isp@freebsd.org Subject: Re: /etc/security on news servers In-Reply-To: <199701300417.WAA01074@solaria.sol.net> References: <199701280641.WAA19513@salsa.gv.tsc.tdk.com> <199701300417.WAA01074@solaria.sol.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-isp@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Joe Greco writes: >> What are folks running news servers doing to keep /etc/security from >> traversing their news spools? >> >> There's a similar problem with /usr/libexec/locate.updatedb that >> /etc/weekly runs to rebuild the location database, and you probably don't >> want to use the mount flags trick here. > >find ${SRCHPATHS} \! -fstype local -prune -or -print | \ > egrep -v '^/news|^/nov' | \ find ${SRCHPATHS} \! -fstype local -prune -or -path /news -prune -or -path /nov -prune -or -print do the same thing without traversing the spool. Wolfram