Re: kickstart ++ installing rpm

2008-08-07 Thread Gianluca Cecchi
On Wed, 06 Aug 2008 12:11:28 +0200 Mogens Kjaer wrote: I wrote it because I've actually tried it :-) Sorry Mogens, I didn't want to hurt you (but from the smiley it seems I didn't ;-) I read offcial rh el 4 and 5 docs recently because I had to make some kickstart customizations and so in

kickstart ++ installing rpm

2008-08-06 Thread Gregory Machin
Hi I'm trying to install an rpm in the %post section of the install using /bin/rpm -Uvh http://192.168.2.203/devel/courier-imap/courier-imap-4.3.1-1.8.x86_64.rpm. The web server logs on 192.168.2.203 show that the file/s where downloaded. but after rebooting the files aren't installed .. this

re: kickstart ++ installing rpm

2008-08-06 Thread Gianluca Cecchi
On Wed, 6 Aug 2008 09:46:19 +0200 Gregory Machin wrote: I'm trying to install an rpm in the %post section of the install You can try to insert in your %post section something like this: %post # Define LOG FILE LOGFILE=/root/ks_postinstall.log export LOGFILE touch $LOGFILE /bin/rpm -Uvh

Re: kickstart ++ installing rpm

2008-08-06 Thread Mogens Kjaer
Gregory Machin wrote: ...Is there a way to view the %post part of the install process ? Depending upon which Fedora %post --log /root/post-install.log or %post --log /mnt/sysimage/root/post-install.log I think it changed with F9? Mogens -- Mogens Kjaer, Carlsberg A/S, Computer Department

Re: kickstart ++ installing rpm

2008-08-06 Thread Gianluca Cecchi
On Wed, 06 Aug 2008 10:52:10 +0200 Mogens Kjaer wrote Depending upon which Fedora %post --log /root/post-install.log or %post --log /mnt/sysimage/root/post-install.log AFAIK there is not a --log option for post section, but only one for the interpreter to use (--interpreter ) and one to

Re: kickstart ++ installing rpm

2008-08-06 Thread Mogens Kjaer
Gianluca Cecchi wrote: On Wed, 06 Aug 2008 10:52:10 +0200 Mogens Kjaer wrote Depending upon which Fedora %post --log /root/post-install.log or %post --log /mnt/sysimage/root/post-install.log AFAIK there is not a --log option for post section, but only one for the interpreter to use

Re: kickstart ++ installing rpm

2008-08-06 Thread Gregory Machin
Thanks thats a cool tip :-) 2008/8/6 Gianluca Cecchi [EMAIL PROTECTED]: On Wed, 6 Aug 2008 09:46:19 +0200 Gregory Machin wrote: I'm trying to install an rpm in the %post section of the install You can try to insert in your %post section something like this: %post # Define LOG FILE