As what I said in the title,I am trying to install Fedora 9 with the kickstart.I can't figure out how to add the rpm package in the %package section of the kickstart.If I add one my own customized rpm package "myown" and I put the myown-1.0.0.rpm under Package directory.What else can I change?
Is it the xml files under repodata files such as Fedora-9-comps.xml.gz and primary.xml.gz.
I am not very sure about the format how to edit it.After I add the myown into Fedora-9-comps.xml.gz and primary.xml.gz.I got the error like "unable to read group information from repositories,This is a problem with the generaton of yor install tree".
Anyone has some idea about it.I really appreciate!!Thanks!
The following is my kickstart file
#version=F9
install
nfs --server=ws5 --dir=/local/fedora9install-edit
lang en_US.UTF-8
keyboard us
network --device eth0 --bootproto dhcp
rootpw --iscrypted $6$2i7PxP4bLrzGHQDc$qoo4eKu0msYqRAMDVVGVNp81B.1GgA NwdfnAZSOWWj4OIqyujYeaznSRukwqviKFPMByZF0MkKBa4mk9 DOQAn/
firewall --enabled --port=22:tcp
authconfig --enableshadow --passalgo=sha512
selinux --enforcing
timezone --utc Etc/GMT
bootloader --location=mbr --driveorder=sda,sdb
clearpart --all --drives=sda
part /boot --fstype ext3 --size=1000
part pv.85 --size=20000 --ondisk=sda
part pv.86 --size=100 --grow --ondisk=sda
volgroup OSGroup00 --pesize=32768 pv.85
volgroup DataGroup01 --pesize=32768 pv.86
logvol /var --fstype ext3 --name=LogVol_VAR --vgname=OSGroup00 --size=4992
logvol / --fstype ext3 --name=LogVol_ROOT --vgname=OSGroup00 --size=4992
logvol /tmp --fstype ext3 --name=LogVol_TMP --vgname=OSGroup00 --size=4992
#logvol /local --fstype ext3 --name=LogVol_LOCAL --vgname=DataGroup01 --size=100 --grow
logvol /local --fstype ext3 --name=LogVol_LOCAL --vgname=DataGroup01 --size=4992
logvol swap --fstype swap --name=LogVol_SWAP --vgname=OSGroup00 --size=4992
%packages
@core
@base
@java
@dial-up
gpgme
pax
gnupg2
myown
%end