skip list config in 2.4

Troy Johnson <[email protected]> Mon, 28 Apr 2003 09:19:55 -0500
Newsgroups gmane.linux.redhat.rpm.grab
Message-ID <[email protected]>
Greg,

I was looking at my /etc/grab/config on a Red Hat 8.0 box and I noticed 
these lines (54-55):

===============================================
   skip list = kernel, ximian, pre
, rc
===============================================

and I looked at the grab code for 'skip list' (line 582):

===============================================
   skip list = kernel, ximian, pre\\\d+, rc\\\d+
===============================================

and removed a '\' for 'pre' and 'rc' packages. Now grab outputs a config 
like this (line 54):

===============================================
   skip list = kernel, ximian, pre\d+, rc\d+
===============================================

which I think looks "righter" to me. Is it?

My diff is here:

===============================================
582c582
<   skip list = kernel, ximian, pre\\\d+, rc\\\d+
---
 >   skip list = kernel, ximian, pre\\d+, rc\\d+
===============================================

Sorry to be annoying, and thank you again,

Troy