From daniel.neuberger at gmail.com Mon Aug 1 22:40:27 2011 From: daniel.neuberger at gmail.com (Daniel Neuberger) Date: Mon, 01 Aug 2011 18:40:27 -0400 Subject: disable automatic dependency resolution and fail on conflict Message-ID: Is there any way to disable automatic dependency resolution? According to the redhat docs --resolvedeps and --ignoredeps are deprecated. Also, I would like installs to fail if two packages conflict. Is that possible? Thanks. - Daniel From andy.kannberg at gmail.com Tue Aug 2 07:43:08 2011 From: andy.kannberg at gmail.com (Andy Kannberg) Date: Tue, 2 Aug 2011 09:43:08 +0200 Subject: probe drives in during %pre in kickstart Message-ID: Hi all, For RHEL5 kickstarts, we use the isys module (from anaconda) to probe which and how many drives are available in the system. However, when trying to install a RHEl6 system with, it fails in the pre part because the function hardDriveDict has been removed from isys. A googlesearch pointed me to the direction of minihal as a replacement for isys.DriveDict. However, currently it is not clear to me where I can find the minihal module and how I should import this module in the pre-phase of the kickstart. Can anyone shed a light on this ? cheers, Andy -------------- next part -------------- An HTML attachment was scrubbed... URL: From clumens at redhat.com Tue Aug 2 13:13:47 2011 From: clumens at redhat.com (Chris Lumens) Date: Tue, 2 Aug 2011 09:13:47 -0400 Subject: probe drives in during %pre in kickstart In-Reply-To: References: Message-ID: <20110802131347.GN1843@exeter.usersys.redhat.com> > For RHEL5 kickstarts, we use the isys module (from anaconda) to probe which > and how many drives are available in the system. > However, when trying to install a RHEl6 system with, it fails in the pre > part because the function hardDriveDict has been removed from isys. > A googlesearch pointed me to the direction of minihal as a replacement for > isys.DriveDict. However, currently it is not clear to me where I can find > the minihal module and how I should import this module in the pre-phase of > the kickstart. > > Can anyone shed a light on this ? You can use the list-harddrives command line program for this, or if you are writing a script you can see what it does and duplicate it if necessary. - Chris From ks-list at puzzled.xs4all.nl Tue Aug 2 14:15:52 2011 From: ks-list at puzzled.xs4all.nl (Patrick Lists) Date: Tue, 02 Aug 2011 16:15:52 +0200 Subject: Setting gconf/dconf keys in kickstart Message-ID: <4E380698.2010108@puzzled.xs4all.nl> Hi, Not sure if this is considered OT. If so my apologies. I had a nicely working kickstart setup for rolling out F14 to my laptop. Even setting gconf keys worked (after many late nights fighting with it). Setting those gconf keys no longer works with F15. Does anyone have any snippets where they use gconf & dconf to tweak some GNOME 3 desktop settings? For example, here are some snippets from the kickstart file in the %post section that do not work: # Show weekdays in the calendar gsettings set org.gnome.shell.calendar show-weekdate true # Show the date in the panel gsettings set org.gnome.shell.clock show-date true # Enable min,max,close buttons gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults --set "/desktop/gnome/shell/windows/button_layout" --type string ":minimize,maximize,close" After the kickstart install has finished and I log in, none of these settings are active. But when I issue those commands manually as user patrick they have the desired result (only for that user). What am I doing wrong? How can I set those keys in %post, preferably for all users? Thanks! Patrick From hbrown at divms.uiowa.edu Tue Aug 2 14:40:29 2011 From: hbrown at divms.uiowa.edu (Hugh Brown) Date: Tue, 02 Aug 2011 09:40:29 -0500 Subject: Setting gconf/dconf keys in kickstart In-Reply-To: <4E380698.2010108@puzzled.xs4all.nl> References: <4E380698.2010108@puzzled.xs4all.nl> Message-ID: <4E380C5D.70208@divms.uiowa.edu> On 08/02/2011 09:15 AM, Patrick Lists wrote: > Hi, > > Not sure if this is considered OT. If so my apologies. > > I had a nicely working kickstart setup for rolling out F14 to my laptop. > Even setting gconf keys worked (after many late nights fighting with > it). Setting those gconf keys no longer works with F15. Does anyone have > any snippets where they use gconf & dconf to tweak some GNOME 3 desktop > settings? > > For example, here are some snippets from the kickstart file in the %post > section that do not work: > > # Show weekdays in the calendar > gsettings set org.gnome.shell.calendar show-weekdate true > > # Show the date in the panel > gsettings set org.gnome.shell.clock show-date true > > # Enable min,max,close buttons > gconftool-2 --direct --config-source > xml:readwrite:/etc/gconf/gconf.xml.defaults --set > "/desktop/gnome/shell/windows/button_layout" --type string > ":minimize,maximize,close" > > After the kickstart install has finished and I log in, none of these > settings are active. But when I issue those commands manually as user > patrick they have the desired result (only for that user). > > What am I doing wrong? How can I set those keys in %post, preferably for > all users? > > Thanks! > Patrick I've done similar things in a script that gets called from %post and they were successfully set. One difference is that these were made to the mandatory tree instead of defaults, though I don't think that should make a difference. The script follows. Hugh GCONFTOOL="gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.mandatory" # add the minimize/maximize buttons to windows $GCONFTOOL -t string --set /desktop/gnome/shell/windows/button_layout ":minimize,maximize,close" # disable user_switch $GCONFTOOL -t bool --set /desktop/gnome/lockdown/disable_user_switching true # if regular users can't read these keys, it doesn't work find /etc/gconf/gconf.xml.mandatory -type d -exec chmod 755 {} \; find /etc/gconf/gconf.xml.mandatory -type f -exec chmod 644 {} \; # create an area for our dconf configuration cat >/etc/dconf/profile/user </etc/dconf/db/local.d/foo < Is there any way to select packages by both version and architecture? Neither of the following seems to work: gcc-4.1.2.x86_64 gcc.x86_64-4.1.2 Thanks. - Daniel From ks-list at puzzled.xs4all.nl Tue Aug 2 23:35:21 2011 From: ks-list at puzzled.xs4all.nl (Patrick Lists) Date: Wed, 03 Aug 2011 01:35:21 +0200 Subject: Setting gconf/dconf keys in kickstart In-Reply-To: <4E380C5D.70208@divms.uiowa.edu> References: <4E380698.2010108@puzzled.xs4all.nl> <4E380C5D.70208@divms.uiowa.edu> Message-ID: <4E3889B9.4080100@puzzled.xs4all.nl> On 08/02/2011 04:40 PM, Hugh Brown wrote: [snip] > I've done similar things in a script that gets called from %post and > they were successfully set. > > One difference is that these were made to the mandatory tree instead of > defaults, though I don't think that should make a difference. The script > follows. Hugh, Thank you very much for your script! The mandatory part worked like a charm and the dark dconf magic is slightly less dark now :) Still need to do some more polishing but I'm getting there. Regards, Patrick From ks-list at puzzled.xs4all.nl Wed Aug 3 15:08:35 2011 From: ks-list at puzzled.xs4all.nl (Patrick Lists) Date: Wed, 03 Aug 2011 17:08:35 +0200 Subject: Setting gconf/dconf keys in kickstart In-Reply-To: <4E380C5D.70208@divms.uiowa.edu> References: <4E380698.2010108@puzzled.xs4all.nl> <4E380C5D.70208@divms.uiowa.edu> Message-ID: <4E396473.1080401@puzzled.xs4all.nl> On 08/02/2011 04:40 PM, Hugh Brown wrote: > I've done similar things in a script that gets called from %post and > they were successfully set. As previously reported your script worked like a charm. Thanks again. I'm still struggling with one thing: to turn off that "klunk" sound when GDM starts. the lines below directly in the %post section all did not work. sudo -u gdm gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t bool /desktop/gnome/sound/event_sounds false sudo -u gdm gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.mandatory -s -t bool /desktop/gnome/sound/event_sounds false This script called from %post makes the %post session not finish so I suspect something does not return control but I don't know why and am out of my league here. #!/bin/sh su - gdm -s /bin/bash --command=' for line in `dbus-launch`; do export "$line"; done; /usr/libexec/dconf-service & GSETTINGS_BACKEND=dconf gsettings set org.gnome.desktop.sound event-sounds false; exit' 2> /dev/null Any hints how to silence GDM would be most appreciated. Thanks and regards, Patrick From hbrown at divms.uiowa.edu Wed Aug 3 15:20:36 2011 From: hbrown at divms.uiowa.edu (Hugh Brown) Date: Wed, 03 Aug 2011 10:20:36 -0500 Subject: Setting gconf/dconf keys in kickstart In-Reply-To: <4E396473.1080401@puzzled.xs4all.nl> References: <4E380698.2010108@puzzled.xs4all.nl> <4E380C5D.70208@divms.uiowa.edu> <4E396473.1080401@puzzled.xs4all.nl> Message-ID: <4E396744.9060900@divms.uiowa.edu> On 08/03/2011 10:08 AM, Patrick Lists wrote: > On 08/02/2011 04:40 PM, Hugh Brown wrote: >> I've done similar things in a script that gets called from %post and >> they were successfully set. > > As previously reported your script worked like a charm. Thanks again. > I'm still struggling with one thing: to turn off that "klunk" sound when > GDM starts. the lines below directly in the %post section all did not work. > > sudo -u gdm gconftool-2 --direct > --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t bool > /desktop/gnome/sound/event_sounds false > > sudo -u gdm gconftool-2 --direct > --config-source=xml:readwrite:/etc/gconf/gconf.xml.mandatory -s -t bool > /desktop/gnome/sound/event_sounds false > The gdm user doesn't have write access to /etc/gconf, you can probably leave off the --direct --config-source... sudo -u gdm gconftool-2 -s -t bool /desktop/gnome/sound/event_sounds false should do it. Hugh From ks-list at puzzled.xs4all.nl Wed Aug 3 18:16:01 2011 From: ks-list at puzzled.xs4all.nl (Patrick Lists) Date: Wed, 03 Aug 2011 20:16:01 +0200 Subject: Setting gconf/dconf keys in kickstart In-Reply-To: <4E396744.9060900@divms.uiowa.edu> References: <4E380698.2010108@puzzled.xs4all.nl> <4E380C5D.70208@divms.uiowa.edu> <4E396473.1080401@puzzled.xs4all.nl> <4E396744.9060900@divms.uiowa.edu> Message-ID: <4E399061.6000203@puzzled.xs4all.nl> On 08/03/2011 05:20 PM, Hugh Brown wrote: [snip] > The gdm user doesn't have write access to /etc/gconf, you can probably > leave off the --direct --config-source... Thanks, that makes total sense now that you point it out to me. > sudo -u gdm gconftool-2 -s -t bool /desktop/gnome/sound/event_sounds false > > should do it. Unfortunately not. The thing is that the script below works if I include it with sh /tmp/gdm_disable_sound.sh in %post. ----8<--- su - gdm -s /bin/bash --command=' for line in `dbus-launch`; do export "$line"; done; /usr/libexec/dconf-service & GSETTINGS_BACKEND=dconf gsettings set org.gnome.desktop.sound event-sounds false; exit' 2> /dev/null ----8<--- But once %post is finished the installer never jumps to the final reboot screen. Only with ctrl-c will it end and reboot. Without the script it jumps to the final reboot screen fine. No idea what in the script is causing that but I assume I need to use the proper su or sudo incantation. Hints most appreciated. Regards, Patrick From Tim.Mooney at ndsu.edu Wed Aug 3 18:33:26 2011 From: Tim.Mooney at ndsu.edu (Tim Mooney) Date: Wed, 3 Aug 2011 13:33:26 -0500 (CDT) Subject: Setting gconf/dconf keys in kickstart In-Reply-To: <4E399061.6000203@puzzled.xs4all.nl> References: <4E380698.2010108@puzzled.xs4all.nl> <4E380C5D.70208@divms.uiowa.edu> <4E396473.1080401@puzzled.xs4all.nl> <4E396744.9060900@divms.uiowa.edu> <4E399061.6000203@puzzled.xs4all.nl> Message-ID: In regard to: Re: Setting gconf/dconf keys in kickstart, Patrick Lists said...: > ----8<--- > su - gdm -s /bin/bash --command=' > for line in `dbus-launch`; do export "$line"; done; > /usr/libexec/dconf-service & > GSETTINGS_BACKEND=dconf gsettings set org.gnome.desktop.sound event-sounds > false; > exit' 2> /dev/null > ----8<--- > > But once %post is finished the installer never jumps to the final reboot > screen. Only with ctrl-c will it end and reboot. Without the script it jumps > to the final reboot screen fine. No idea what in the script is causing that > but I assume I need to use the proper su or sudo incantation. Hints most > appreciated. Try killing dconf-service after you've run gsettings. Tim -- Tim Mooney Tim.Mooney at ndsu.edu Enterprise Computing & Infrastructure 701-231-1076 (Voice) Room 242-J6, IACC Building 701-231-8541 (Fax) North Dakota State University, Fargo, ND 58105-5164 From ks-list at puzzled.xs4all.nl Wed Aug 3 20:33:24 2011 From: ks-list at puzzled.xs4all.nl (Patrick Lists) Date: Wed, 03 Aug 2011 22:33:24 +0200 Subject: Setting gconf/dconf keys in kickstart In-Reply-To: References: <4E380698.2010108@puzzled.xs4all.nl> <4E380C5D.70208@divms.uiowa.edu> <4E396473.1080401@puzzled.xs4all.nl> <4E396744.9060900@divms.uiowa.edu> <4E399061.6000203@puzzled.xs4all.nl> Message-ID: <4E39B094.3010001@puzzled.xs4all.nl> On 08/03/2011 08:33 PM, Tim Mooney wrote: [snip] > Try killing dconf-service after you've run gsettings. That worked like a charm. Thanks Tim! Regards, Patrick From hbrown at divms.uiowa.edu Wed Aug 3 21:52:45 2011 From: hbrown at divms.uiowa.edu (Hugh Brown) Date: Wed, 03 Aug 2011 16:52:45 -0500 Subject: Setting gconf/dconf keys in kickstart In-Reply-To: <4E399061.6000203@puzzled.xs4all.nl> References: <4E380698.2010108@puzzled.xs4all.nl> <4E380C5D.70208@divms.uiowa.edu> <4E396473.1080401@puzzled.xs4all.nl> <4E396744.9060900@divms.uiowa.edu> <4E399061.6000203@puzzled.xs4all.nl> Message-ID: <4E39C32D.9090308@divms.uiowa.edu> On 08/03/2011 01:16 PM, Patrick Lists wrote: > On 08/03/2011 05:20 PM, Hugh Brown wrote: > [snip] >> The gdm user doesn't have write access to /etc/gconf, you can probably >> leave off the --direct --config-source... > > Thanks, that makes total sense now that you point it out to me. > >> sudo -u gdm gconftool-2 -s -t bool /desktop/gnome/sound/event_sounds >> false >> >> should do it. > > Unfortunately not. The thing is that the script below works if I include > it with sh /tmp/gdm_disable_sound.sh in %post. > > ----8<--- > su - gdm -s /bin/bash --command=' > for line in `dbus-launch`; do export "$line"; done; > /usr/libexec/dconf-service & > GSETTINGS_BACKEND=dconf gsettings set org.gnome.desktop.sound > event-sounds false; > exit' 2> /dev/null > ----8<--- eval `dbus-launch` should do everything in your for loop. You might be able to revert to just setting /desktop/gnome/sound/event_sounds in the mandatory tree w/ the hope that the gdm user inherits those settings. As to things, not exiting, the anaconda webpage describes this scenario: http://fedoraproject.org/wiki/Anaconda/Kickstart#Chapter_5._Post-installation_Script If your script spawns a daemon process, you must make sure to close stdout and stderr. Doing so is standard procedure for creating daemons. If you do not close these file descriptors, the installation will appear hung as anaconda waits for an EOF from the script. Killing dconf-service takes care of closing those file descriptors. Hugh From ks-list at puzzled.xs4all.nl Wed Aug 3 23:43:34 2011 From: ks-list at puzzled.xs4all.nl (Patrick Lists) Date: Thu, 04 Aug 2011 01:43:34 +0200 Subject: Setting gconf/dconf keys in kickstart In-Reply-To: <4E39C32D.9090308@divms.uiowa.edu> References: <4E380698.2010108@puzzled.xs4all.nl> <4E380C5D.70208@divms.uiowa.edu> <4E396473.1080401@puzzled.xs4all.nl> <4E396744.9060900@divms.uiowa.edu> <4E399061.6000203@puzzled.xs4all.nl> <4E39C32D.9090308@divms.uiowa.edu> Message-ID: <4E39DD26.5010002@puzzled.xs4all.nl> On 08/03/2011 11:52 PM, Hugh Brown wrote: [snip] >> ----8<--- >> su - gdm -s /bin/bash --command=' >> for line in `dbus-launch`; do export "$line"; done; >> /usr/libexec/dconf-service & >> GSETTINGS_BACKEND=dconf gsettings set org.gnome.desktop.sound >> event-sounds false; >> exit' 2> /dev/null >> ----8<--- > > > eval `dbus-launch` should do everything in your for loop. Thanks. It's not really my for loop. All credit goes to the Arch Linux wiki where I found this script. > You might be able to revert to just setting > /desktop/gnome/sound/event_sounds in the mandatory tree w/ the hope that > the gdm user inherits those settings. I think I tried that late last night and iirc GDM did not inherit. > As to things, not exiting, the anaconda webpage describes this scenario: > > http://fedoraproject.org/wiki/Anaconda/Kickstart#Chapter_5._Post-installation_Script > > If your script spawns a daemon process, you must make sure to close > stdout and stderr. Doing so is standard procedure for creating daemons. > If you do not close these file descriptors, the installation will appear > hung as anaconda waits for an EOF from the script. > > Killing dconf-service takes care of closing those file descriptors. Thank you for the link (and help). I understand now why it was hanging. Regards, Patrick From beyonddc.storage at gmail.com Thu Aug 4 05:47:09 2011 From: beyonddc.storage at gmail.com (Chun Tat David Chu) Date: Thu, 4 Aug 2011 01:47:09 -0400 Subject: selecting packages by version and architecture In-Reply-To: References: Message-ID: What do you mean? I have no problem specifying packages using --. in the %packages section of my kickstart configuration file. - dc On Tue, Aug 2, 2011 at 5:31 PM, Daniel Neuberger wrote: > Is there any way to select packages by both version and architecture? > Neither of the following seems to work: > > gcc-4.1.2.x86_64 > gcc.x86_64-4.1.2 > > Thanks. > > - Daniel > > ______________________________**_________________ > Kickstart-list mailing list > Kickstart-list at redhat.com > https://www.redhat.com/**mailman/listinfo/kickstart-**list > -------------- next part -------------- An HTML attachment was scrubbed... URL: From stuart.browne at ausregistry.com.au Thu Aug 4 06:19:50 2011 From: stuart.browne at ausregistry.com.au (Stuart Browne) Date: Thu, 4 Aug 2011 16:19:50 +1000 Subject: IPTables and kickstart %post Message-ID: <8CEF048B9EC83748B1517DC64EA130FB60919EECE8@off-win2003-01.ausregistrygroup.local> Hi, I've got a number of (in-house) RPM packages that I want installed during a kickstart build (no problem's there), but they add iptables rules in order to allow specific services in. During the kickstart under RHEL5, the iptables modules are not available for usage so the usual rule manipulation commands aren't available. Modifying the '/etc/sysconfig/iptables' file doesn't work well either given that these packages are also installed on running systems. So I was wondering if there are any commands that can be used during a kickstart that would cover both bases. The anaconda firewall rule manipulation commands I've seen aren't powerful (or accurate) enough for our purposes. Is using a 'firstboot' module the cleanest way, installing these packages after the machine boots for the first time? Stuart J. Browne Senior Unix Administrator, Network Administrator AusRegistry Pty Ltd Level 8, 10 Queens Road Melbourne. Victoria. Australia. 3004. Ph:? +61 3 9866 3710 Fax: +61 3 9866 1970 Email: stuart.browne at ausregistry.com.au Web: www.ausregistry.com.au The information contained in this communication is intended for the named recipients only. It is subject to copyright and may contain legally privileged and confidential information and if you are not an intended recipient you must not use, copy, distribute or take any action in reliance on it. If you have received this communication in error, please delete all copies from your system and notify us immediately. From gwaugh at frontstreetnetworks.com Thu Aug 4 13:55:25 2011 From: gwaugh at frontstreetnetworks.com (Gerald Waugh) Date: Thu, 04 Aug 2011 08:55:25 -0500 Subject: Installing on a server with 2 1TB drives. Message-ID: <4E3AA4CD.1010407@frontstreetnetworks.com> Installing on a server with 2 1TB drives. getting this error line 2057 reads lv > self.freeSpace /usr/lib/anaconda/storage/devices.py(2058)_addLogVol() raise DeviceError("new lv is too large to fit in free space", self.name I deleted all partitions on both drives, but still get the same error -- Gerald From CallahanT at tessco.com Thu Aug 4 14:08:38 2011 From: CallahanT at tessco.com (Callahan, Tom) Date: Thu, 04 Aug 2011 10:08:38 -0400 Subject: Installing on a server with 2 1TB drives. In-Reply-To: <4E3AA4CD.1010407@frontstreetnetworks.com> Message-ID: What does your kickstart look like? -- Tom Callahan Technology Development Services 410-229-1361 Desk 410-588-7605 Cell callahant at TESSCO.COM www.tessco.com Network Infrastructure Equipment | Mobile Devices & Accessories | Installation, Test, Equipment & Supplies Find TESSCO on Facebook & Twitter > From: Gerald Waugh > Organization: Front Street Networks > Reply-To: , Discussion list about Kickstart > > Date: Thu, 04 Aug 2011 08:55:25 -0500 > To: Discussion list about Kickstart > Subject: Installing on a server with 2 1TB drives. > > Installing on a server with 2 1TB drives. > getting this error > > line 2057 reads > lv > self.freeSpace > > /usr/lib/anaconda/storage/devices.py(2058)_addLogVol() > raise DeviceError("new lv is too large to fit in free space", self.name > > > I deleted all partitions on both drives, but still get the same error > -- > Gerald > > _______________________________________________ > Kickstart-list mailing list > Kickstart-list at redhat.com > https://www.redhat.com/mailman/listinfo/kickstart-list > From mrose at n-able.com Thu Aug 4 14:17:41 2011 From: mrose at n-able.com (Matt Rose) Date: Thu, 4 Aug 2011 10:17:41 -0400 Subject: IPTables and kickstart %post In-Reply-To: <8CEF048B9EC83748B1517DC64EA130FB60919EECE8@off-win2003-01.ausregistrygroup.local> References: <8CEF048B9EC83748B1517DC64EA130FB60919EECE8@off-win2003-01.ausregistrygroup.local> Message-ID: On Thu, 4 Aug 2011, Stuart Browne wrote: > Hi, > > I've got a number of (in-house) RPM packages that I want installed > during a kickstart build (no problem's there), but they add iptables > rules in order to allow specific services in. > > During the kickstart under RHEL5, the iptables modules are not available > for usage so the usual rule manipulation commands aren't available. > Modifying the '/etc/sysconfig/iptables' file doesn't work well either > given that these packages are also installed on running systems. > It sounds like you need to add the requirement for the iptables modules and /etc/sysconfig/iptables to the in-house RPMs you've created. This way, the RPM transaction will take the requirement into account. Matt > Stuart J. Browne > Senior Unix Administrator, Network Administrator > AusRegistry Pty Ltd > Level 8, 10 Queens Road > Melbourne. Victoria. Australia. 3004. > Ph: +61 3 9866 3710 > Fax: +61 3 9866 1970 > Email: stuart.browne at ausregistry.com.au > Web: www.ausregistry.com.au > > The information contained in this communication is intended for the named recipients only. It is subject to copyright and may contain legally privileged and confidential information and if you are not an intended recipient you must not use, copy, distribute or take any action in reliance on it. If you have received this communication in error, please delete all copies from your system and notify us immediately. > > > > _______________________________________________ > Kickstart-list mailing list > Kickstart-list at redhat.com > https://www.redhat.com/mailman/listinfo/kickstart-list > From clumens at redhat.com Thu Aug 4 14:36:53 2011 From: clumens at redhat.com (Chris Lumens) Date: Thu, 4 Aug 2011 10:36:53 -0400 Subject: Installing on a server with 2 1TB drives. In-Reply-To: <4E3AA4CD.1010407@frontstreetnetworks.com> References: <4E3AA4CD.1010407@frontstreetnetworks.com> Message-ID: <20110804143653.GC6152@exeter.usersys.redhat.com> > Installing on a server with 2 1TB drives. > getting this error > > line 2057 reads > lv > self.freeSpace > > /usr/lib/anaconda/storage/devices.py(2058)_addLogVol() > raise DeviceError("new lv is too large to fit in free space", self.name > > > I deleted all partitions on both drives, but still get the same error If you can grab /tmp/anaconda-tb-*, please file a bug with it attached. - Chris From dxh at yahoo.com Thu Aug 4 19:50:01 2011 From: dxh at yahoo.com (Don Hoover) Date: Thu, 4 Aug 2011 12:50:01 -0700 (PDT) Subject: Example corporate desktop %packages example Message-ID: <1312487401.32985.YahooMailNeo@web120703.mail.ne1.yahoo.com> I have very refined server kickstarts I have worked on over the years to whiddle down to the essentials, but I am now tasked with developing a workstation build. ? The goal is to end up with a small corporate minimal gnome desktop of some sort for running a few home grown apps, and not much else. ? Does anyone have a %package list for a RHEL5 and RHEL6 desktop build that would be a good starting point? Thanks! From hbrown at divms.uiowa.edu Thu Aug 4 21:25:53 2011 From: hbrown at divms.uiowa.edu (Hugh Brown) Date: Thu, 04 Aug 2011 16:25:53 -0500 Subject: Example corporate desktop %packages example In-Reply-To: <1312487401.32985.YahooMailNeo@web120703.mail.ne1.yahoo.com> References: <1312487401.32985.YahooMailNeo@web120703.mail.ne1.yahoo.com> Message-ID: <4E3B0E61.3060801@divms.uiowa.edu> On 08/04/2011 02:50 PM, Don Hoover wrote: > I have very refined server kickstarts I have worked on over the years to whiddle down to the essentials, but I am now tasked with developing a workstation build. > > The goal is to end up with a small corporate minimal gnome desktop of some sort for running a few home grown apps, and not much else. > > Does anyone have a %package list for a RHEL5 and RHEL6 desktop build that would be a good starting point? > > Thanks! > > _______________________________________________ > Kickstart-list mailing list > Kickstart-list at redhat.com > https://www.redhat.com/mailman/listinfo/kickstart-list I'd probably just start with @gnome-desktop and then go from there. Hugh From ygor at comcast.net Mon Aug 8 11:48:46 2011 From: ygor at comcast.net (Dan White) Date: Mon, 8 Aug 2011 11:48:46 +0000 (UTC) Subject: probe drives in during %pre in kickstart Message-ID: <236537179.366916.1312804126197.JavaMail.root@sz0126a.westchester.pa.mail.comcast.net> >> For RHEL5 kickstarts, we use the isys module (from anaconda) to probe which >> and how many drives are available in the system. >> However, when trying to install a RHEl6 system with, it fails in the pre >> part because the function hardDriveDict has been removed from isys. >> A googlesearch pointed me to the direction of minihal as a replacement for >> isys.DriveDict. However, currently it is not clear to me where I can find >> the minihal module and how I should import this module in the pre-phase of >> the kickstart. >> >> Can anyone shed a light on this ? > >You can use the list-harddrives command line program for this, or if you >are writing a script you can see what it does and duplicate it if >necessary. > >- Chris No, list-harddrives is busted https://bugzilla.redhat.com/show_bug.cgi?id=709880 ?Sometimes I think the surest sign that intelligent life exists elsewhere in the universe is that none of it has tried to contact us.? Bill Waterson (Calvin & Hobbes) From mrose at n-able.com Mon Aug 8 13:00:33 2011 From: mrose at n-able.com (Matt Rose) Date: Mon, 8 Aug 2011 09:00:33 -0400 Subject: probe drives in during %pre in kickstart In-Reply-To: <236537179.366916.1312804126197.JavaMail.root@sz0126a.westchester.pa.mail.comcast.net> References: <236537179.366916.1312804126197.JavaMail.root@sz0126a.westchester.pa.mail.comcast.net> Message-ID: On Mon, 8 Aug 2011, Dan White wrote: >>> For RHEL5 kickstarts, we use the isys module (from anaconda) to probe which >>> and how many drives are available in the system. >>> However, when trying to install a RHEl6 system with, it fails in the pre >>> part because the function hardDriveDict has been removed from isys. >>> A googlesearch pointed me to the direction of minihal as a replacement for >>> isys.DriveDict. However, currently it is not clear to me where I can find >>> the minihal module and how I should import this module in the pre-phase of >>> the kickstart. >>> >>> Can anyone shed a light on this ? >> >> You can use the list-harddrives command line program for this, or if you >> are writing a script you can see what it does and duplicate it if >> necessary. >> >> - Chris > > No, list-harddrives is busted > > https://bugzilla.redhat.com/show_bug.cgi?id=709880 > The workaround for this is also here, though, and it's pretty simple, and won't break backwards compatibility, I don't think. https://bugzilla.redhat.com/show_bug.cgi?id=709880#c5 Matt > > > > ?Sometimes I think the surest sign that intelligent life exists elsewhere in the universe is that none of it has tried to contact us.? > Bill Waterson (Calvin & Hobbes) > > _______________________________________________ > Kickstart-list mailing list > Kickstart-list at redhat.com > https://www.redhat.com/mailman/listinfo/kickstart-list > From clumens at redhat.com Mon Aug 8 13:45:52 2011 From: clumens at redhat.com (clumens at redhat.com) Date: Mon, 8 Aug 2011 09:45:52 -0400 Subject: probe drives in during %pre in kickstart In-Reply-To: <236537179.366916.1312804126197.JavaMail.root@sz0126a.westchester.pa.mail.comcast.net> References: <236537179.366916.1312804126197.JavaMail.root@sz0126a.westchester.pa.mail.comcast.net> Message-ID: <20110808134552.GP6152@exeter.usersys.redhat.com> > No, list-harddrives is busted > > https://bugzilla.redhat.com/show_bug.cgi?id=709880 That's a RHEL5 bug, and you were asking about RHEL6. Completely different products. - Chris From vchepkov at gmail.com Mon Aug 8 19:20:15 2011 From: vchepkov at gmail.com (Vadym Chepkov) Date: Mon, 8 Aug 2011 15:20:15 -0400 Subject: probe drives in during %pre in kickstart In-Reply-To: <20110808134552.GP6152@exeter.usersys.redhat.com> References: <236537179.366916.1312804126197.JavaMail.root@sz0126a.westchester.pa.mail.comcast.net> <20110808134552.GP6152@exeter.usersys.redhat.com> Message-ID: On Aug 8, 2011, at 9:45 AM, clumens at redhat.com wrote: >> No, list-harddrives is busted >> >> https://bugzilla.redhat.com/show_bug.cgi?id=709880 > > That's a RHEL5 bug, and you were asking about RHEL6. Completely > different products. > And it's "busted" in Redhat 6.0 too :) > - Chris > > _______________________________________________ > Kickstart-list mailing list > Kickstart-list at redhat.com > https://www.redhat.com/mailman/listinfo/kickstart-list From clumens at redhat.com Mon Aug 8 19:41:25 2011 From: clumens at redhat.com (Chris Lumens) Date: Mon, 8 Aug 2011 15:41:25 -0400 Subject: probe drives in during %pre in kickstart In-Reply-To: References: <236537179.366916.1312804126197.JavaMail.root@sz0126a.westchester.pa.mail.comcast.net> <20110808134552.GP6152@exeter.usersys.redhat.com> Message-ID: <20110808194124.GE14845@exeter.usersys.redhat.com> > And it's "busted" in Redhat 6.0 too :) You're likely referring to 654436. - Chris From vchepkov at gmail.com Mon Aug 8 23:22:30 2011 From: vchepkov at gmail.com (Vadym Chepkov) Date: Mon, 8 Aug 2011 19:22:30 -0400 Subject: probe drives in during %pre in kickstart In-Reply-To: <20110808194124.GE14845@exeter.usersys.redhat.com> References: <236537179.366916.1312804126197.JavaMail.root@sz0126a.westchester.pa.mail.comcast.net> <20110808134552.GP6152@exeter.usersys.redhat.com> <20110808194124.GE14845@exeter.usersys.redhat.com> Message-ID: On Aug 8, 2011, at 3:41 PM, Chris Lumens wrote: >> And it's "busted" in Redhat 6.0 too :) > > You're likely referring to 654436. > Correct and to be fair it has been fixed in 6.1 > - Chris > > _______________________________________________ > Kickstart-list mailing list > Kickstart-list at redhat.com > https://www.redhat.com/mailman/listinfo/kickstart-list From beyonddc.storage at gmail.com Tue Aug 9 21:28:18 2011 From: beyonddc.storage at gmail.com (Chun Tat David Chu) Date: Tue, 9 Aug 2011 17:28:18 -0400 Subject: Upload file to FTP Server in %post Message-ID: Hi All, I am using RHEL 5.2 and within my %post, I would like to upload a file to an anonymous enabled FTP server. Here's what I am doing. %post cat < /root/.netrc machine login anonymous password ^M NETRC ftp -i </${TAR_FILE_NAME}.gpg quit EOF I am not sure what went wrong here. When I run this scriptlet standalone in a shell, it runs successfully. However when run within Anaconda, it doesn't work. I couldn't see the file being uploaded to my FTP server. Any idea? Thanks, David -------------- next part -------------- An HTML attachment was scrubbed... URL: From beyonddc.storage at gmail.com Tue Aug 9 21:50:46 2011 From: beyonddc.storage at gmail.com (Chun Tat David Chu) Date: Tue, 9 Aug 2011 17:50:46 -0400 Subject: [Solved] Upload file to FTP Server in %post In-Reply-To: References: Message-ID: The below code does work when you add the following right before the FTP upload HOME=/root ftp locates .netrc from ${HOME} so ${HOME} must be set. I am assuming that ${HOME} is not set while Anaconda is running. - dc On Tue, Aug 9, 2011 at 5:28 PM, Chun Tat David Chu < beyonddc.storage at gmail.com> wrote: > Hi All, > > I am using RHEL 5.2 and within my %post, I would like to upload a file to > an anonymous enabled FTP server. > > Here's what I am doing. > > %post > cat < /root/.netrc > machine > login anonymous > password ^M > NETRC > > ftp -i < put /root/${TAR_FILE_NAME}.gpg > system_to_rebuild//${TAR_FILE_NAME}.gpg > quit > EOF > > I am not sure what went wrong here. When I run this scriptlet standalone > in a shell, it runs successfully. > However when run within Anaconda, it doesn't work. I couldn't see the file > being uploaded to my FTP server. > > Any idea? > > Thanks, > > David > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Iain.Morrison at mrc-epid.cam.ac.uk Fri Aug 12 16:54:11 2011 From: Iain.Morrison at mrc-epid.cam.ac.uk (Iain Morrison) Date: Fri, 12 Aug 2011 17:54:11 +0100 Subject: ks file not found via dhcp In-Reply-To: References: <7C481A0A0BBE9E4BA110F26D7A2BFFDC026E7C38@nodmx01.igglobal.com> Message-ID: <7F2C60CEE8B98346BD9FBAE010150522255A3A@silicon.mrc-epid.cam.ac.uk> Hi We have a RHEL 4 dhcp server that points to a ks location on an Oracle filer. This works with 4 and 5 but with 6 anaconda can't find the ks file unless the path is added explicitly, e.g. ks=nfs:aaa.bbb.ccc.ddd:/export/n_os/ks/eee.fff.ggg.hhh-kickstart for a machine with IP eee.fff.ggg.hhh In our dhcpd.conf file we have filename "/export/n_os/ks/"; next-server aaa.bbb.ccc.ddd; where aaa.bbb.ccc.ddd is our Oracle filer. Has anything changed in how the ks file is found? thanks iain -- Iain Morrison IT Manager MRC Epidemiology Unit Institute of Metabolic Science Box 285 Addenbrooke's Hospital Hills Road Cambridge CB2 0QQ Tel 01223 769200 From vpodzime at redhat.com Mon Aug 15 08:07:42 2011 From: vpodzime at redhat.com (Vratislav Podzimek) Date: Mon, 15 Aug 2011 10:07:42 +0200 Subject: ks file not found via dhcp In-Reply-To: <7F2C60CEE8B98346BD9FBAE010150522255A3A@silicon.mrc-epid.cam.ac.uk> References: <7C481A0A0BBE9E4BA110F26D7A2BFFDC026E7C38@nodmx01.igglobal.com> <7F2C60CEE8B98346BD9FBAE010150522255A3A@silicon.mrc-epid.cam.ac.uk> Message-ID: <1313395662.12365.2.camel@dhcp-29-14.brq.redhat.com> Hi Iain, there should be some error message in /tmp/anaconda.log. Could you please post it here? Vratislav Podzimek On Fri, 2011-08-12 at 17:54 +0100, Iain Morrison wrote: > Hi > > We have a RHEL 4 dhcp server that points to a ks location on an Oracle > filer. This works with 4 and 5 but with 6 anaconda can't find the ks > file unless the path is added explicitly, e.g. > ks=nfs:aaa.bbb.ccc.ddd:/export/n_os/ks/eee.fff.ggg.hhh-kickstart for a > machine with IP eee.fff.ggg.hhh > > In our dhcpd.conf file we have > > filename "/export/n_os/ks/"; > next-server aaa.bbb.ccc.ddd; > > where aaa.bbb.ccc.ddd is our Oracle filer. > > Has anything changed in how the ks file is found? > > thanks > > iain > > -- > > Iain Morrison > IT Manager > MRC Epidemiology Unit > Institute of Metabolic Science > Box 285 > Addenbrooke's Hospital > Hills Road > Cambridge > CB2 0QQ > Tel 01223 769200 > > > > _______________________________________________ > Kickstart-list mailing list > Kickstart-list at redhat.com > https://www.redhat.com/mailman/listinfo/kickstart-list From Iain.Morrison at mrc-epid.cam.ac.uk Mon Aug 15 12:46:54 2011 From: Iain.Morrison at mrc-epid.cam.ac.uk (Iain Morrison) Date: Mon, 15 Aug 2011 13:46:54 +0100 Subject: ks file not found via dhcp In-Reply-To: <1313395662.12365.2.camel@dhcp-29-14.brq.redhat.com> References: <7C481A0A0BBE9E4BA110F26D7A2BFFDC026E7C38@nodmx01.igglobal.com><7F2C60CEE8B98346BD9FBAE010150522255A3A@silicon.mrc-epid.cam.ac.uk> <1313395662.12365.2.camel@dhcp-29-14.brq.redhat.com> Message-ID: <7F2C60CEE8B98346BD9FBAE010150522255A4B@silicon.mrc-epid.cam.ac.uk> Hi Vratislav, this was done using 6.0 but we get the same result using 6.1 09:24:29,540 INFO : kernel command line: initrd=initrd.img ks ksdevice=eth2 BOOT_IMAGE=vmlinuz 09:24:29,540 DEBUG : readNetInfo /tmp/s390net not found, early return 09:24:29,540 INFO : anaconda version 13.21.117 on x86_64 starting 09:24:29,546 INFO : 4055732 kB are available 09:24:32,736 DEBUG : Saving module iscsi_ibft 09:24:32,736 DEBUG : Saving module iscsi_boot_sysfs 09:24:32,736 DEBUG : Saving module pcspkr 09:24:32,736 DEBUG : Saving module edd 09:24:32,736 DEBUG : Saving module mlx4_ib 09:24:32,736 DEBUG : Saving module mlx4_en 09:24:32,736 DEBUG : Saving module mlx4_core 09:24:32,736 DEBUG : Saving module ib_ipoib 09:24:32,736 DEBUG : Saving module ib_cm 09:24:32,736 DEBUG : Saving module ib_sa 09:24:32,736 DEBUG : Saving module ib_mad 09:24:32,736 DEBUG : Saving module ib_core 09:24:32,736 DEBUG : Saving module ipv6 09:24:32,736 DEBUG : Saving module iscsi_tcp 09:24:32,736 DEBUG : Saving module libiscsi_tcp 09:24:32,736 DEBUG : Saving module libiscsi 09:24:32,736 DEBUG : Saving module scsi_transport_iscsi 09:24:32,736 DEBUG : Saving module squashfs 09:24:32,736 DEBUG : Saving module cramfs 09:24:32,736 DEBUG : probing buses 09:24:32,762 DEBUG : waiting for hardware to initialize 09:24:36,480 INFO : Trying to detect vendor driver discs 09:24:36,780 DEBUG : probing buses 09:24:36,802 DEBUG : waiting for hardware to initialize 09:24:38,277 INFO : getting kickstart file 09:24:38,293 INFO : doing kickstart... setting it up 09:24:38,293 DEBUG : activating device eth2 09:24:45,305 INFO : wait_for_iface_activation (2274): device eth2 activated 09:24:45,317 ERROR : no bootserver was found - We entered the ks location here as it could not find it automatically 09:55:18,989 INFO : url is A.B.C.D:/export/n_os/ks/E.F.G.H-kickstart 09:55:18,989 DEBUG : parseNfsHostPathOpts url: |A.B.C.D:/export/n_os/ks/E.F.G.H-kickstart| 09:55:18,989 DEBUG : parseNfsHostPathOpts host: |A.B.C.D| 09:55:18,989 DEBUG : parseNfsHostPathOpts path: |/export/n_os/ks/E.F.G.H-kickstart| 09:55:18,989 DEBUG : parseNfsHostPathOpts opts: |(null)| 09:55:18,989 INFO : file location: nfs:A.B.C.D:/export/n_os/ks/E.F.G.H-kickstart 09:55:19,158 DEBUG : marking first kickstart network command 09:55:19,158 INFO : setting up kickstart 09:55:19,158 INFO : kickstartFromNfs 09:55:19,158 INFO : results of nfs, host is A.B.C.D, dir is /export/n_os/RHEL/Server/6.0, opts are '(null)' 09:55:19,158 INFO : kickstart network command - device eth2 09:55:19,158 INFO : activating first device from kickstart because network is needed 09:55:19,169 INFO : device eth2 is already activated 09:55:19,169 INFO : disconnecting device eth2 09:55:21,178 INFO : wait_for_iface_disconnection (2351): device eth2 disconnected Any suggestions/pointers welcome. thanks iain -- Iain Morrison IT Manager MRC Epidemiology Unit Institute of Metabolic Science Box 285 Addenbrooke's Hospital Hills Road Cambridge CB2 0QQ Tel 01223 769200 -----Original Message----- From: kickstart-list-bounces at redhat.com [mailto:kickstart-list-bounces at redhat.com] On Behalf Of Vratislav Podzimek Sent: 15 August 2011 09:08 To: kickstart-list at redhat.com Subject: Re: ks file not found via dhcp Hi Iain, there should be some error message in /tmp/anaconda.log. Could you please post it here? Vratislav Podzimek On Fri, 2011-08-12 at 17:54 +0100, Iain Morrison wrote: > Hi > > We have a RHEL 4 dhcp server that points to a ks location on an Oracle > filer. This works with 4 and 5 but with 6 anaconda can't find the ks > file unless the path is added explicitly, e.g. > ks=nfs:aaa.bbb.ccc.ddd:/export/n_os/ks/eee.fff.ggg.hhh-kickstart for a > machine with IP eee.fff.ggg.hhh > > In our dhcpd.conf file we have > > filename "/export/n_os/ks/"; > next-server aaa.bbb.ccc.ddd; > > where aaa.bbb.ccc.ddd is our Oracle filer. > > Has anything changed in how the ks file is found? > > thanks > > iain > > -- > > Iain Morrison > IT Manager > MRC Epidemiology Unit > Institute of Metabolic Science > Box 285 > Addenbrooke's Hospital > Hills Road > Cambridge > CB2 0QQ > Tel 01223 769200 > > > > _______________________________________________ > Kickstart-list mailing list > Kickstart-list at redhat.com > https://www.redhat.com/mailman/listinfo/kickstart-list _______________________________________________ Kickstart-list mailing list Kickstart-list at redhat.com https://www.redhat.com/mailman/listinfo/kickstart-list From clumens at redhat.com Mon Aug 15 14:32:56 2011 From: clumens at redhat.com (Chris Lumens) Date: Mon, 15 Aug 2011 10:32:56 -0400 Subject: ks file not found via dhcp In-Reply-To: <7F2C60CEE8B98346BD9FBAE010150522255A4B@silicon.mrc-epid.cam.ac.uk> References: <7C481A0A0BBE9E4BA110F26D7A2BFFDC026E7C38@nodmx01.igglobal.com> <7F2C60CEE8B98346BD9FBAE010150522255A3A@silicon.mrc-epid.cam.ac.uk> <1313395662.12365.2.camel@dhcp-29-14.brq.redhat.com> <7F2C60CEE8B98346BD9FBAE010150522255A4B@silicon.mrc-epid.cam.ac.uk> Message-ID: <20110815143256.GN1779@exeter.usersys.redhat.com> > 09:24:38,293 DEBUG : activating device eth2 > 09:24:45,305 INFO : wait_for_iface_activation (2274): device eth2 > activated > 09:24:45,317 ERROR : no bootserver was found That's the problem right there. This is printed out in the getFileFromNfs function, specifically in the path of looking for the implicit kickstart file location. It means the following is failing: server_name = nm_dhcp4_config_get_one_option(dhcp, "server_name"); if (!server_name) { logMessage(ERROR, "no bootserver was found"); g_object_unref(client); return 1; } I wonder if that DHCP option even exists, or if this is a problem with the NM bindings, or what. Could you file a bug about this? - Chris From Iain.Morrison at mrc-epid.cam.ac.uk Mon Aug 15 15:39:04 2011 From: Iain.Morrison at mrc-epid.cam.ac.uk (Iain Morrison) Date: Mon, 15 Aug 2011 16:39:04 +0100 Subject: ks file not found via dhcp In-Reply-To: <20110815143256.GN1779@exeter.usersys.redhat.com> References: <7C481A0A0BBE9E4BA110F26D7A2BFFDC026E7C38@nodmx01.igglobal.com><7F2C60CEE8B98346BD9FBAE010150522255A3A@silicon.mrc-epid.cam.ac.uk><1313395662.12365.2.camel@dhcp-29-14.brq.redhat.com><7F2C60CEE8B98346BD9FBAE010150522255A4B@silicon.mrc-epid.cam.ac.uk> <20110815143256.GN1779@exeter.usersys.redhat.com> Message-ID: <7F2C60CEE8B98346BD9FBAE010150522255A53@silicon.mrc-epid.cam.ac.uk> Hi Chris, in the dhcpd.conf file we have filename "/export/n_os/ks/"; next-server A.B.C.D; where A.B.C.D is the NFS host. I'm happy to file a bugzilla report if you don't think it is a misconfiguration on my part. thanks iain -- Iain Morrison IT Manager MRC Epidemiology Unit Institute of Metabolic Science Box 285 Addenbrooke's Hospital Hills Road Cambridge CB2 0QQ Tel 01223 769200 -----Original Message----- From: kickstart-list-bounces at redhat.com [mailto:kickstart-list-bounces at redhat.com] On Behalf Of Chris Lumens Sent: 15 August 2011 15:33 To: kickstart-list at redhat.com Subject: Re: ks file not found via dhcp > 09:24:38,293 DEBUG : activating device eth2 > 09:24:45,305 INFO : wait_for_iface_activation (2274): device eth2 > activated > 09:24:45,317 ERROR : no bootserver was found That's the problem right there. This is printed out in the getFileFromNfs function, specifically in the path of looking for the implicit kickstart file location. It means the following is failing: server_name = nm_dhcp4_config_get_one_option(dhcp, "server_name"); if (!server_name) { logMessage(ERROR, "no bootserver was found"); g_object_unref(client); return 1; } I wonder if that DHCP option even exists, or if this is a problem with the NM bindings, or what. Could you file a bug about this? - Chris _______________________________________________ Kickstart-list mailing list Kickstart-list at redhat.com https://www.redhat.com/mailman/listinfo/kickstart-list From clumens at redhat.com Mon Aug 15 15:52:48 2011 From: clumens at redhat.com (Chris Lumens) Date: Mon, 15 Aug 2011 11:52:48 -0400 Subject: ks file not found via dhcp In-Reply-To: <7F2C60CEE8B98346BD9FBAE010150522255A53@silicon.mrc-epid.cam.ac.uk> References: <7C481A0A0BBE9E4BA110F26D7A2BFFDC026E7C38@nodmx01.igglobal.com> <7F2C60CEE8B98346BD9FBAE010150522255A3A@silicon.mrc-epid.cam.ac.uk> <1313395662.12365.2.camel@dhcp-29-14.brq.redhat.com> <7F2C60CEE8B98346BD9FBAE010150522255A4B@silicon.mrc-epid.cam.ac.uk> <20110815143256.GN1779@exeter.usersys.redhat.com> <7F2C60CEE8B98346BD9FBAE010150522255A53@silicon.mrc-epid.cam.ac.uk> Message-ID: <20110815155248.GR1779@exeter.usersys.redhat.com> > in the dhcpd.conf file we have > > filename "/export/n_os/ks/"; > next-server A.B.C.D; > > where A.B.C.D is the NFS host. > > I'm happy to file a bugzilla report if you don't think it is a > misconfiguration on my part. It looks to be a legitimate bug to me. - Chris From vpodzime at redhat.com Tue Aug 16 07:42:52 2011 From: vpodzime at redhat.com (Vratislav Podzimek) Date: Tue, 16 Aug 2011 09:42:52 +0200 Subject: ks file not found via dhcp In-Reply-To: <20110815155248.GR1779@exeter.usersys.redhat.com> References: <7C481A0A0BBE9E4BA110F26D7A2BFFDC026E7C38@nodmx01.igglobal.com> <7F2C60CEE8B98346BD9FBAE010150522255A3A@silicon.mrc-epid.cam.ac.uk> <1313395662.12365.2.camel@dhcp-29-14.brq.redhat.com> <7F2C60CEE8B98346BD9FBAE010150522255A4B@silicon.mrc-epid.cam.ac.uk> <20110815143256.GN1779@exeter.usersys.redhat.com> <7F2C60CEE8B98346BD9FBAE010150522255A53@silicon.mrc-epid.cam.ac.uk> <20110815155248.GR1779@exeter.usersys.redhat.com> Message-ID: <1313480572.12365.6.camel@dhcp-29-14.brq.redhat.com> On Mon, 2011-08-15 at 11:52 -0400, Chris Lumens wrote: > > in the dhcpd.conf file we have > > > > filename "/export/n_os/ks/"; > > next-server A.B.C.D; > > > > where A.B.C.D is the NFS host. > > > > I'm happy to file a bugzilla report if you don't think it is a > > misconfiguration on my part. > > It looks to be a legitimate bug to me. It has already been filed and solved, see: https://bugzilla.redhat.com/show_bug.cgi?id=727874 DHCP option has changed from next-server to server-name. Vratislav Podzimek From Iain.Morrison at mrc-epid.cam.ac.uk Tue Aug 16 12:10:41 2011 From: Iain.Morrison at mrc-epid.cam.ac.uk (Iain Morrison) Date: Tue, 16 Aug 2011 13:10:41 +0100 Subject: ks file not found via dhcp In-Reply-To: <1313480572.12365.6.camel@dhcp-29-14.brq.redhat.com> References: <7C481A0A0BBE9E4BA110F26D7A2BFFDC026E7C38@nodmx01.igglobal.com><7F2C60CEE8B98346BD9FBAE010150522255A3A@silicon.mrc-epid.cam.ac.uk><1313395662.12365.2.camel@dhcp-29-14.brq.redhat.com><7F2C60CEE8B98346BD9FBAE010150522255A4B@silicon.mrc-epid.cam.ac.uk><20110815143256.GN1779@exeter.usersys.redhat.com><7F2C60CEE8B98346BD9FBAE010150522255A53@silicon.mrc-epid.cam.ac.uk><20110815155248.GR1779@exeter.usersys.redhat.com> <1313480572.12365.6.camel@dhcp-29-14.brq.redhat.com> Message-ID: <7F2C60CEE8B98346BD9FBAE010150522255A63@silicon.mrc-epid.cam.ac.uk> Hi Vratislav, on adding server-name "A.B.C.D"; to /etc/dhcpd.conf [and restarting the service], ks can now find the correct kickstart file. thanks for everyone's help. iain -- Iain Morrison IT Manager MRC Epidemiology Unit Institute of Metabolic Science Box 285 Addenbrooke's Hospital Hills Road Cambridge CB2 0QQ Tel 01223 769200 -----Original Message----- From: kickstart-list-bounces at redhat.com [mailto:kickstart-list-bounces at redhat.com] On Behalf Of Vratislav Podzimek Sent: 16 August 2011 08:43 To: kickstart-list at redhat.com Subject: Re: ks file not found via dhcp On Mon, 2011-08-15 at 11:52 -0400, Chris Lumens wrote: > > in the dhcpd.conf file we have > > > > filename "/export/n_os/ks/"; > > next-server A.B.C.D; > > > > where A.B.C.D is the NFS host. > > > > I'm happy to file a bugzilla report if you don't think it is a > > misconfiguration on my part. > > It looks to be a legitimate bug to me. It has already been filed and solved, see: https://bugzilla.redhat.com/show_bug.cgi?id=727874 DHCP option has changed from next-server to server-name. Vratislav Podzimek _______________________________________________ Kickstart-list mailing list Kickstart-list at redhat.com https://www.redhat.com/mailman/listinfo/kickstart-list From co55-sy1t at dea.spamcon.org Wed Aug 17 07:45:40 2011 From: co55-sy1t at dea.spamcon.org (whitivery) Date: Wed, 17 Aug 2011 00:45:40 -0700 Subject: ksvalidator - can't detect errors? Message-ID: Sometimes ksvalidator will complain but not return an error, for instance: # ksvalidator -v RHEL5 /tmp/tmp.57yMAuel5v The following problem occurred on line 2 of the kickstart file: Unknown command: somesetting1 # echo $? 0 I want to be able to detect such problems. But when I try to redirect or pipe the output of ksvalidator, it produces no output. How can I detect such problems within a shell script? Fedora 14, pykickstart-1.77-2. From mrose at n-able.com Wed Aug 17 12:56:17 2011 From: mrose at n-able.com (Matt Rose) Date: Wed, 17 Aug 2011 08:56:17 -0400 Subject: ksvalidator - can't detect errors? In-Reply-To: References: Message-ID: On Wed, 17 Aug 2011, whitivery wrote: > Sometimes ksvalidator will complain but not return an error, for > instance: > > # ksvalidator -v RHEL5 /tmp/tmp.57yMAuel5v > The following problem occurred on line 2 of the kickstart file: > Unknown command: somesetting1 > # echo $? > 0 > > I want to be able to detect such problems. But when I try to > redirect or pipe the output of ksvalidator, it produces no > output. > > How can I detect such problems within a shell script? The error might be printed on stderr, which you would have to catch specifically, most likely by redirecting the output to stdout, and catching stdout. If this is the case, something like this might work. output=$(ksvalidator -v RHEL5 /tmp/tmp.57yMAuel5v 2>&1) In general, with shell scripts, if you see output in interactive mode, but not when you run it and capture the output in a script, this is the case. Matt > > Fedora 14, pykickstart-1.77-2. > > > _______________________________________________ > Kickstart-list mailing list > Kickstart-list at redhat.com > https://www.redhat.com/mailman/listinfo/kickstart-list > From mrose at n-able.com Wed Aug 17 13:14:58 2011 From: mrose at n-able.com (Matt Rose) Date: Wed, 17 Aug 2011 09:14:58 -0400 Subject: ksvalidator - can't detect errors? In-Reply-To: References: Message-ID: On Wed, 17 Aug 2011, whitivery wrote: > Sometimes ksvalidator will complain but not return an error, for > instance: > > # ksvalidator -v RHEL5 /tmp/tmp.57yMAuel5v > The following problem occurred on line 2 of the kickstart file: > Unknown command: somesetting1 > # echo $? > 0 > > I want to be able to detect such problems. But when I try to > redirect or pipe the output of ksvalidator, it produces no > output. > > How can I detect such problems within a shell script? > > Fedora 14, pykickstart-1.77-2. Just another note that both problems mentioned above have been fixed in pykickstart 1.82-1 $ cat /etc/fedora-release ; rpm -q pykickstart ; ksvalidator /tmp/foo ; echo $? Fedora release 15 (Lovelock) pykickstart-1.82-1.fc15.noarch The following problem occurred on line 188 of the kickstart file: Section does not end with %%end. 1 Matt > > > _______________________________________________ > Kickstart-list mailing list > Kickstart-list at redhat.com > https://www.redhat.com/mailman/listinfo/kickstart-list > From dkandurwar at eagleinvsys.com Wed Aug 17 16:56:08 2011 From: dkandurwar at eagleinvsys.com (Dinesh Kandurwar) Date: Wed, 17 Aug 2011 16:56:08 +0000 Subject: Package installatio group wise Message-ID: Is there any syntax to install rpm through group wise. Thanks Dinesh K DISCLAIMER: The information contained in this e-mail, and any attachment, is confidential and is intended solely for the use of the intended recipient. Access, copying or re-use of the e-mail or any attachment, or any information contained therein, by any other person is not authorized. If you are not the intended recipient please return the e-mail to the sender and delete it from your computer. Although we attempt to sweep e-mail and attachments for viruses, we do not guarantee that either are virus-free and accept no liability for any damage sustained as a result of viruses. Please refer to http://disclaimer.bankofny.com/eu.htm for certain disclosures relating to European legal entities. From beyonddc.storage at gmail.com Wed Aug 17 17:36:50 2011 From: beyonddc.storage at gmail.com (Chun Tat David Chu) Date: Wed, 17 Aug 2011 13:36:50 -0400 Subject: Package installatio group wise In-Reply-To: References: Message-ID: Hi Dinesh, Are you referring to yum group? If so, under the %packages section, instead of specifying the name of the RPM package, you can specify the yum group by using the @ symbol follow by the group name. For example... @some_yum_group - dc On Wed, Aug 17, 2011 at 12:56 PM, Dinesh Kandurwar < dkandurwar at eagleinvsys.com> wrote: > Is there any syntax to install rpm through group wise. > > > Thanks > Dinesh K > > DISCLAIMER: > The information contained in this e-mail, and any attachment, is > confidential and is intended solely for the use of the intended recipient. > Access, copying or re-use of the e-mail or any attachment, or any > information contained therein, by any other person is not authorized. If you > are not the intended recipient please return the e-mail to the sender and > delete it from your computer. Although we attempt to sweep e-mail and > attachments for viruses, we do not guarantee that either are virus-free and > accept no liability for any damage sustained as a result of viruses. > > Please refer to http://disclaimer.bankofny.com/eu.htm for certain > disclosures relating to European legal entities. > > > _______________________________________________ > Kickstart-list mailing list > Kickstart-list at redhat.com > https://www.redhat.com/mailman/listinfo/kickstart-list > -------------- next part -------------- An HTML attachment was scrubbed... URL: From co55-sy1t at dea.spamcon.org Thu Aug 18 03:38:45 2011 From: co55-sy1t at dea.spamcon.org (whitivery) Date: Wed, 17 Aug 2011 20:38:45 -0700 Subject: ksvalidator - can't detect errors? References: Message-ID: <452p47dfartmgksmam0mvclallvl2fm61a@4ax.com> Matt Rose wrote: >On Wed, 17 Aug 2011, whitivery wrote: > >> Sometimes ksvalidator will complain but not return an error, for >> instance: >> >> # ksvalidator -v RHEL5 /tmp/tmp.57yMAuel5v >> The following problem occurred on line 2 of the kickstart file: >> Unknown command: somesetting1 >> # echo $? >> 0 >> >> I want to be able to detect such problems. But when I try to >> redirect or pipe the output of ksvalidator, it produces no >> output. >> >> How can I detect such problems within a shell script? > >The error might be printed on stderr, which you would have to catch >specifically, most likely by redirecting the output to stdout, and >catching stdout. If this is the case, something like this might work. > >output=$(ksvalidator -v RHEL5 /tmp/tmp.57yMAuel5v 2>&1) > >In general, with shell scripts, if you see output in interactive mode, but >not when you run it and capture the output in a script, this is the case. > >Matt I was redirecting both stderr and stdout as you show - ksvalidator must be detecting this and for some reason doesn't put out anything. From co55-sy1t at dea.spamcon.org Thu Aug 18 04:01:48 2011 From: co55-sy1t at dea.spamcon.org (whitivery) Date: Wed, 17 Aug 2011 21:01:48 -0700 Subject: ksvalidator - can't detect errors? References: Message-ID: Matt Rose wrote: > >On Wed, 17 Aug 2011, whitivery wrote: > >> Sometimes ksvalidator will complain but not return an error, for >> instance: >> >> # ksvalidator -v RHEL5 /tmp/tmp.57yMAuel5v >> The following problem occurred on line 2 of the kickstart file: >> Unknown command: somesetting1 >> # echo $? >> 0 >> >> I want to be able to detect such problems. But when I try to >> redirect or pipe the output of ksvalidator, it produces no >> output. >> >> How can I detect such problems within a shell script? >> >> Fedora 14, pykickstart-1.77-2. > >Just another note that both problems mentioned above have been fixed in >pykickstart 1.82-1 > >$ cat /etc/fedora-release ; rpm -q pykickstart ; ksvalidator /tmp/foo ; >echo $? >Fedora release 15 (Lovelock) >pykickstart-1.82-1.fc15.noarch >The following problem occurred on line 188 of the kickstart file: > >Section does not end with %%end. > >1 Thanks for the response. Just to be clear, the kinds of errors I want to detect are those that don't currently return 1. Here's an example showing both the inability to capture output, and errors that return 1 vs. those that return 0. # ksvalidator /tmp/foo Error reading /tmp/foo: [Errno 2] Local file does not exist: /tmp/foo # echo $? 1 # Y=$(ksvalidator /tmp/foo 2>&1) # echo $Y # # echo abc > /tmp/foo # ksvalidator /tmp/foo 2>&1 The following problem occurred on line 1 of the kickstart file: Unknown command: abc # echo $? 0 If 1.82 solves these, I hope it shows up soon - my Fedora 14 "yum info pykickstart" still shows 1.77. From haiwu.us at gmail.com Thu Aug 18 04:37:04 2011 From: haiwu.us at gmail.com (hai wu) Date: Wed, 17 Aug 2011 23:37:04 -0500 Subject: Language yum groups and kickstart Message-ID: For RHEL6, I am installing all packages in kickstart, and I tried to remove different language yum groups by doing the following: %packages * ... - at Bengali Support [bn] - at Bhutanese Support [dz] - at Brazilian Portuguese Support [pt_BR] .... But all the language rpm packages in these language yum groups would still be installed by kickstart process .. How to prevent these language yum groups from being installed by kickstart? -------------- next part -------------- An HTML attachment was scrubbed... URL: From droidery at gmail.com Thu Aug 18 04:59:16 2011 From: droidery at gmail.com (Amit Saha) Date: Thu, 18 Aug 2011 14:59:16 +1000 Subject: Package installatio group wise In-Reply-To: References: Message-ID: Hello: On Thu, Aug 18, 2011 at 3:36 AM, Chun Tat David Chu wrote: > Hi Dinesh, > > Are you referring to yum group? > If so, under the %packages section, instead of specifying the name of the > RPM package, you can specify the yum group by using the @ symbol follow by > the group name. > > For example... > @some_yum_group And you can find what packages and what levels (default, mandatory, optional) each group has from the *-xml.in files: http://git.fedorahosted.org/git/?p=comps.git;a=tree -Amit -- http://echorand.me From andy.speagle at wichita.edu Thu Aug 25 12:50:31 2011 From: andy.speagle at wichita.edu (Speagle, Andy) Date: Thu, 25 Aug 2011 07:50:31 -0500 Subject: Upgrading via Kickstart - Can't find root filesystem Message-ID: Hi Folks, I'm trying to configure more or less unattended system upgrades via kickstart, but am finding that anaconda can't seem to locate my existing root filesystem. I'm trying to upgrade RHEL 5 to RHEL 6... and the root filesystem is on LVM. I get the standard erro: "The root for the previously installed system was not found." Has anyone encountered and/or resolved this problem? Thanks. Andy Speagle System & Storage Administrator UCATS - Wichita State University P: 316.978.3869 C: 316.617.2431 -------------- next part -------------- An HTML attachment was scrubbed... URL: From GProcunier at symcor.com Fri Aug 26 14:36:27 2011 From: GProcunier at symcor.com (GProcunier at symcor.com) Date: Fri, 26 Aug 2011 10:36:27 -0400 Subject: Multiple iSCSI targets during kickstart for root multipath Message-ID: Hello, I was curious if you can define multiple iscsi targets / iqn's in a kickstart? I have two iSCSI target portals with clustered access to a hosts root disk for HA and would like to have the installer see both iqn's and setup/install on the multipath abstraction. ---- Portal A ---- | | [bare metal client] - - Shard Storage (SAN) | | ---- Portal B ---- Portal A (10.10.10.10:3260,iqn.1970-01.com.example:netclient.rootdisk) Portal B (10.10.20.20:3260,iqn.1970-01.com.example:netclient.rootdisk) Can I just go: iscsiname iqn.1970-01.com.example.portal-a:netclient.rootdisk iscsi --ipaddr=10.10.10.10 --port=3260 iscsiname iqn.1970-01.com.example.portal-b:netclient.rootdisk iscsi --ipaddr=10.10.20.20 --port=3260 Then boot the machine with the mpath option to detect the multi iscsi path for installation ? I did some experimentation and determined that you can pass dracut multiple netroot's so the disks are visible when the kernel loads up. Eg. default=0 timeout=5 splashimage=(hd0,0)/grub/splash.xpm.gz hiddenmenu title Red Hat Enterprise Linux (2.6.32-131.0.15.el6.x86_64) root (hd0,0) kernel /vmlinuz-2.6.32-131.0.15.el6.x86_64 ro root=/dev/mapper/vg00-root_fs netroot=iscsi:neclient-root:iscsipw at 10.10.10.10::3260::iqn.1970-01.lab.example.portal-a:netclient-0.root iscs i_initiator=iqn.1970-01.lab.example.portal-a:netclient-0.root netroot=iscsi:neclient-root:iscsipw @10.10.20.20::3260::iqn.1970-01.lab.example.portal-b:netclient-0.root iscsi_initiator=iqn.1970-0 1.lab.example.portal-b:netclient-0.root ip=10.125.71.249::10.125.71.34:255.255.255.0:test-template:eth0:none ifnam e=eth0:00:1a:4a:7d:47:02 rd_LVM_LV=vg00/root_fs rd_NO_LUKS rd_NO_MD rd_NO_DM LANG=en_US.UTF-8 SYSFONT=latarcyrheb- sun16 KEYBOARDTYPE=pc KEYTABLE=us crashkernel=auto vga=771 initrd /initramfs-2.6.32-131.0.15.el6.x86_64.img Cheers, -- Greg Procunier UNIX Administrator III - Enterprise Servers and Storage 1 Robert Speck Parkway, Suite 400, Mississauga, Ontario L4Z 4E7 Office: 416-673-3320 Mobile: 647-895-2977 Email: gprocunier at symcor.com -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/jpeg Size: 3258 bytes Desc: not available URL: -------------- next part -------------- CONFIDENTIALITY WARNING This communication, including any attachments, is for the exclusive use of addressee and may contain proprietary and/or confidential information. If you are not the intended recipient, any use, copying, disclosure, dissemination or distribution is strictly prohibited. If you are not the intended recipient, please notify the sender immediately by return e-mail, delete this communication and destroy all copies. AVERTISSEMENT RELATIF ? LA CONFIDENTIALIT? Ce message, ainsi que les pi?ces qui y sont jointes, est destin? ? l?usage exclusif de la personne ? laquelle il s?adresse et peut contenir de l?information personnelle ou confidentielle. Si le lecteur de ce message n?en est pas le destinataire, nous l?avisons par la pr?sente que toute diffusion, distribution, reproduction ou utilisation de son contenu est strictement interdite. Veuillez avertir sur-le-champ l?exp?diteur par retour de courrier ?lectronique et supprimez ce message ainsi que toutes les pi?ces jointes. From floydsmith at aol.com Tue Aug 30 08:41:54 2011 From: floydsmith at aol.com (Floyd Smith) Date: Tue, 30 Aug 2011 04:41:54 -0400 (EDT) Subject: am trying to create a revisor DVD image for fc 15 Message-ID: <8CE3507CDB75E84-1DCC-61@webmail-d016.sysops.aol.com> Hello, I am trying to create a revisor DVD image for fc 15. First, I notice that my /etc/revisor/conf.d does not have any files with fc15 in their name, so I tried: sudo yum -y install /etc/revisor/conf.d Loaded plugins: langpacks, presto, refresh-packagekit Setting up Install Process Package revisor-cli-2.2-3.fc15.noarch already installed and latest version Nothing to do Then I tried: sudo revisor --yes config=/etc/revisor/conf.d/revisor-f15-i386.conf --cli --model=f15-i386 --kickstart=fc15.ks --install-dvd Cannot find anaconda-runtime in /usr/lib/anaconda-runtime I am not sure above is correct syntax for fc 15. Then I tried (also to no avail): sudo yum -y install anaconda-runtime Loaded plugins: langpacks, presto, refresh-packagekit Setting up Install Process Package anaconda-15.31-1.fc15.x86_64 already installed and latest version Nothing to do Any help will be greatly appreciated. Floyd, -------------- next part -------------- An HTML attachment was scrubbed... URL: From bruno at wolff.to Tue Aug 30 11:54:04 2011 From: bruno at wolff.to (Bruno Wolff III) Date: Tue, 30 Aug 2011 06:54:04 -0500 Subject: am trying to create a revisor DVD image for fc 15 In-Reply-To: <8CE3507CDB75E84-1DCC-61@webmail-d016.sysops.aol.com> References: <8CE3507CDB75E84-1DCC-61@webmail-d016.sysops.aol.com> Message-ID: <20110830115404.GB6364@wolff.to> On Tue, Aug 30, 2011 at 04:41:54 -0400, Floyd Smith wrote: > > I am trying to create a revisor DVD image for fc 15. revisor isn't that well maintained right now. I suggest using either pungi for install images or livecd-creator for live images. From floydsmith at aol.com Tue Aug 30 20:34:59 2011 From: floydsmith at aol.com (Floyd Smith) Date: Tue, 30 Aug 2011 16:34:59 -0400 (EDT) Subject: Kickstart-list Digest, Vol 90, Issue 16 could you give and example of a cmdline pungi execution for what I am trying In-Reply-To: References: Message-ID: <8CE356B6B903478-924-92F5@webmail-m098.sysops.aol.com> I may also need conf.d file for fc 15 for pungi or the cmdline may supply all I need. I am trying to get a fc 15 install image that has the latest updates. I can not get the GUI software update to work. And things are pretty bad because pristine fc 15 panics in GUI (bugzilla 706621) but kernel upgrade to kernel-2.6.40.3-0.fc15.x86_64.rpm appears to fix that - but, many things have to updated to work with this kernel - and I would prefer to have an image with the latest updates to match since I can not update with software update. -----Original Message----- From: kickstart-list-request To: kickstart-list Sent: Tue, Aug 30, 2011 12:03 pm Subject: Kickstart-list Digest, Vol 90, Issue 16 Send Kickstart-list mailing list submissions to kickstart-list at redhat.com To subscribe or unsubscribe via the World Wide Web, visit https://www.redhat.com/mailman/listinfo/kickstart-list or, via email, send a message with subject or body 'help' to kickstart-list-request at redhat.com You can reach the person managing the list at kickstart-list-owner at redhat.com When replying, please edit your Subject line so it is more specific than "Re: Contents of Kickstart-list digest..." Today's Topics: 1. am trying to create a revisor DVD image for fc 15 (Floyd Smith) 2. Re: am trying to create a revisor DVD image for fc 15 (Bruno Wolff III) Attached Message From: Floyd Smith To: kickstart-list at redhat.com; floydsmith at aol.com Subject: am trying to create a revisor DVD image for fc 15 Date: Tue, 30 Aug 2011 04:41:54 -0400 (EDT) Hello, I am trying to create a revisor DVD image for fc 15. First, I notice that my /etc/revisor/conf.d does not have any files with fc15 in their name, so I tried: sudo yum -y install /etc/revisor/conf.d Loaded plugins: langpacks, presto, refresh-packagekit Setting up Install Process Package revisor-cli-2.2-3.fc15.noarch already installed and latest version Nothing to do Then I tried: sudo revisor --yes config=/etc/revisor/conf.d/revisor-f15-i386.conf --cli --model=f15-i386 --kickstart=fc15.ks --install-dvd Cannot find anaconda-runtime in /usr/lib/anaconda-runtime I am not sure above is correct syntax for fc 15. Then I tried (also to no avail): sudo yum -y install anaconda-runtime Loaded plugins: langpacks, presto, refresh-packagekit Setting up Install Process Package anaconda-15.31-1.fc15.x86_64 already installed and latest version Nothing to do Any help will be greatly appreciated. Floyd, Attached Message From: Bruno Wolff III To: Floyd Smith Cc: kickstart-list at redhat.com Subject: Re: am trying to create a revisor DVD image for fc 15 Date: Tue, 30 Aug 2011 06:54:04 -0500 On Tue, Aug 30, 2011 at 04:41:54 -0400, Floyd Smith wrote: > > I am trying to create a revisor DVD image for fc 15. revisor isn't that well maintained right now. I suggest using either pungi for install images or livecd-creator for live images. _______________________________________________ Kickstart-list mailing list Kickstart-list at redhat.com https://www.redhat.com/mailman/listinfo/kickstart-list -------------- next part -------------- An HTML attachment was scrubbed... URL: