I've managed to work around the problem of missing packages, in general, with the following collection of commands (run from within the context of the chroot):
yum clean metadata yum check dependencies \ | grep 'has missing requires' \ | sed 's/.\+has missing requires of //' \ | sed 's/ [=<>].\+//' \ | while read dep; do yum install -y "$dep"; done I run this after I run rinse (as part of a larger image building system), but I assume this could be stuck in a post-install hook or something. - Matt -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org