Taylor, ForrestX wrote:
On Mon, 2004-07-12 at 06:39, Brian Long wrote:
Grab it from the FC1 or RH9 anaconda RPM :) Maybe Alexander can also
post it on his Twiki since it's useful for ongoing image development and
testing.
/Brian/
On Mon, 2004-07-12 at 09:17, Camilo Uribe wrote:
For my customized fedora I start reading
http://rau.homedns.org/twiki/bin/view/Anaconda/CustomizingFedoraCore
in the 3 point they talk about
/usr/share/comps-extras/getfullcomps.py
but in fedora core 2 there is no getfullcomps.py
how can I check for any missing dependencies without
getfullcomps.py ?
Good idea. I uploaded it at the site above.
Forrest
I use a simple shell script to check dependences, here is it:
--------- cut here -------
#!/bin/sh
cd /home/basem/BUILD/i386/Redhat/RPMS
mkdir /tmp/testdb
rpm --initdb --dbpath /tmp/testdb
rpm --test --dbpath /tmp/testdb -Uvh *.rpm
rm -rf /tmp/testdb
cd -
---------------------------
Have fun
Basem Narmok