jamesroman wrote: > Not sure if this is related of not, but when I do an rpm verify on > zenoss, I show over 3000 files missing. Can anyone tell me if that is > appropriate for zenoss-2.3.3-257.el4.rpm? > > [...@server]$ rpm -V zenoss | grep missing | wc -l > 3257 >
James, Those are likely to be missing byte-compiled python files (*.pyc) and are not likely to be causal since the the pyc's will regenerate on the fly as necessary. Looks like in the %post section of the spec file we clean out the *.pyc's for some reason. I'll get a ticket open so we handle that aspect of the packaging better. A better test for missing files would be: rpm -V zenoss | grep missing | egrep -v "*.pyc$" but the package looks good from that perspective and your md5sum is correct, so I'll leave it with Ian and Chad for the moment. Glenn -------------------- m2f -------------------- Read this topic online here: http://forums.zenoss.com/viewtopic.php?p=31833#31833 -------------------- m2f -------------------- _______________________________________________ zenoss-users mailing list [email protected] http://lists.zenoss.org/mailman/listinfo/zenoss-users
