Subject: Re: misc/7716: /etc/daily modify
To: None <cgd@netbsd.org>
From: HEO SeonMeyong <seirios@Matrix.IRI.Co.Jp>
List: netbsd-bugs
Date: 06/06/1999 12:18:36
----Next_Part(Sun_Jun__6_12:18:34_1999_229)--
Content-Type: Text/Plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

	Hi. This is HEO SeonMeyong writing.

> seirios@matrix.iri.co.jp writes:
> > 	attach temporaly patch.
> > 	But I think this is not solv this probrem.
> > [ ... ]
> > +		-o -fstype kernfs -o -fstype procfs -o union -o null \) \
> > +		-a -prune -o -name 'lost+found' -a -prune -o \
> 
> uh, you're missing a couple of -fstype checks there, so this patch
> will not function properly.

	Ah! Sorry. This is simply mistaken.
	Attach new patch.

HEO

----Next_Part(Sun_Jun__6_12:18:34_1999_229)--
Content-Type: Text/Plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="daily.diff"

--- daily	1999/05/03 13:26:48	1.1
+++ daily	1999/06/06 03:15:21
@@ -81,8 +81,9 @@
 
 if checkyesno find_core; then
 	find / \( ! -fstype local -o -fstype rdonly -o -fstype fdesc \
-		-o -fstype kernfs -o -fstype procfs \) -a -prune -o \
-		-name 'lost+found' -a -prune -o \
+		-o -fstype kernfs -o -fstype procfs -o -fstype union \
+		-o -fstype null \) \
+		-a -prune -o -name 'lost+found' -a -prune -o \
 		\( -name '*.core' -o -name 'core' \) -a -print > $TMP
 #		\( -name '[#,]*' -o -name '.#*' -o -name a.out \
 #		   -o -name '*.CKP' -o -name '.emacs_[0-9]*' \) \

----Next_Part(Sun_Jun__6_12:18:34_1999_229)----