On Fri, Jan 04, 2002 at 10:58:47AM -0800, Stephen Carville wrote:
> Whenever I use amoverview I get the following:
>
> $ amoverview daily1
> bad date oracle-b: in oracle-b: skipping cruft directory, perhaps you
> should delete it.
> bad date oracle-a: in oracle-a: skipping cruft directory, perhaps you
> should delete it.
> bad date oracle-w: in oracle-w: skipping cruft directory, perhaps you
> should delete it.
>
> etc...
>
> Not a big deal but I'd like to know what these "cruft" directories
> are.
That's an output of 'amadmin <config> find' it doesn't understand.
Could you try this patch.
Anyway, you should not have those directory (oracle-a, ...) in
your holding disk directory.
Jean-Louis
--
Jean-Louis Martineau email: [EMAIL PROTECTED]
Departement IRO, Universite de Montreal
C.P. 6128, Succ. CENTRE-VILLE Tel: (514) 343-6111 ext. 3529
Montreal, Canada, H3C 3J7 Fax: (514) 343-5834
--- server-src/amoverview.pl.in.1 Fri Jan 4 14:43:50 2002
+++ server-src/amoverview.pl.in Fri Jan 4 14:49:51 2002
@@ -104,6 +104,8 @@
<$fh>;
while (<$fh>) {
chomp;
+ next if /found Amanda directory/;
+ next if /skipping cruft directory/;
($date, $host, $disk, $level, $tape, $file, $status) = split ' ', $_;
next if $date eq 'date';
next if $date eq 'Warning:';