Hi all.<br><br>My name is Edwind Contreras and i wrote a kickstart file for install somethings fedora 7 clients (  IBM lenovo model 9645-G1S [1]), but  after the install all packets and run %post scripts the cdrom tray don't eject, just reboot, somebody can see my kickstart file and suggest something about this?
<br><br>My kickstart file is this:<br><br>#platform=AMD64 o Intel EM64T<br><br># System authorization information<br>auth --useshadow  --enablemd5  --enableldap --enableldapauth --ldapserver=<a href="http://192.168.0.254">
192.168.0.254</a> --ldapbasedn=ou=People,dc=domain,dc=com,dc=ve<br># Use text mode install<br>text<br># Firewall configuration<br>firewall --disabled<br>firstboot --disable<br># System keyboard<br>keyboard la-latin1<br># System language
<br>lang es_VE<br># Root password<br>rootpw --iscrypted $1$asdasreyt8IX/s//iouoiS$z1hVloiuoi7wj7Kyd11ytytutyiyui5869K.y/<br># SELinux configuration<br>selinux --disabled<br># Install OS instead of upgrade<br>install<br># Use CDROM installation media
<br>cdrom<br>#network<br>network --bootproto static --ip <a href="http://192.168.0.10">192.168.0.10</a> --netmask <a href="http://255.255.255.0">255.255.255.0</a> --gateway <a href="http://192.168.0.254">192.168.0.254</a>
 --nameserver <a href="http://192.168.0.254">192.168.0.254</a><br># Reboot after installation<br>reboot<br># System timezone<br>timezone --isUtc America/Caracas<br># X Window System configuration information<br>xconfig  --driver=intel --defaultdesktop=GNOME --depth=24 --resolution=1024x768 --videoram=256
<br># System bootloader configuration<br>bootloader --append="vga=791" --location=mbr<br># Partition clearing information<br>clearpart --linux  --drives=sda<br># Disk partitioning information<br>part /boot --fstype="ext3" --ondisk=sda --size=100 --bytes-per-inode=4096
<br>part pv.4 --grow --ondisk=sda --size=1 --bytes-per-inode=4096<br>volgroup VolGroup00 --pesize=32768 pv.4<br>logvol swap --fstype="swap" --grow --maxsize=992 --size=496 --name=LogVol01 --vgname=VolGroup00 --bytes-per-inode=4096
<br>logvol / --fstype="ext3" --grow --size=9000 --name=LogVol00 --vgname=VolGroup00 --bytes-per-inode=4096<br><br>%post<br>chkconfig messagebus off<br>chkconfig avahi-daemon off<br>chkconfig avahi-dnsconfd off<br>
chkconfig haldaemon off<br>chkconfig ConsoleKit off<br>chkconfig yum-updatesd off<br>chkconfig fistboot off<br>chkconfig pcscd off<br>echo "session required        pam_mkhomedir.so skel=/etc/skel/ umask=0022" >> /etc/pam.d/gdm
<br>cat << EOF > /etc/rc.local<br>#!/bin/sh<br>#<br># This script will be executed *after* all the other init scripts.<br># You can put your own initialization stuff in here if you don't<br># want to do the full Sys V style init stuff.
<br>/sbin/netconfig<br>touch /var/lock/subsys/local<br>EOF<br>echo '#!/bin/sh' >> /sbin/netconfig<br>echo 'IP=`/sbin/ifconfig eth0 | grep inet | cut -d : -f 2 | cut -d " " -f 1`' >> /sbin/netconfig
<br>echo 'if [ $IP == <a href="http://192.168.0.10">192.168.0.10</a> ] ; then' >> /sbin/netconfig<br>echo '/usr/bin/system-config-network' >> /sbin/netconfig<br>echo 'sed -i "s/"id:3:initdefault:"/"id:5:initdefault:"/g" /etc/inittab' >> /sbin/netconfig
<br>echo 'for i in {1..6} ; do sed -i "s/"$i:2345"/"#$i:2345"/" /etc/inittab ; done' >> /sbin/netconfig<br>echo 'reboot' >> /sbin/netconfig<br>echo 'else' >> /sbin/netconfig
<br>echo 'echo "IP Configurada adecuadamente"' >> /sbin/netconfig<br>echo 'fi' >> /sbin/netconfig<br>chmod 775 /sbin/netconfig<br>cat << EOF > /sbin/profilesync<br>#!/bin/sh<br>
rsync -r rsync://192.168.0.254/profiles /etc/desktop-profiles/<br>EOF<br>chmod 775 /sbin/profilesync<br>echo "*/10 * * * * /sbin/profilesync" >> /var/spool/cron/root<br>chmod 600 /var/spool/cron/root<br>/etc/init.d/crond restart
<br>cat << EOF > /etc/modprobe.conf<br>alias eth0 tg3<br>alias scsi_hostadapter ata_piix<br>alias snd-card-0 snd-hda-intel<br>options snd-hda-intel position_fix=1 model=3stack<br>EOF<br>eject<br>wait<br>eject /tmp/cdrom
<br>wait<br>eject /dev/cdrom<br>wait<br><br>%packages<br>....................<br>something packets<br>....................<br><br>Thanks, any help will be appreciated<br><br><br>[1] <a href="http://www-307.ibm.com/pc/support/site.wss/document.do?sitestyle=lenovo&lndocid=MIGR-67159">
http://www-307.ibm.com/pc/support/site.wss/document.do?sitestyle=lenovo&lndocid=MIGR-67159</a><br>