From sagarun at gmail.com Tue Feb 10 02:53:41 2015 From: sagarun at gmail.com (Arun SAG) Date: Mon, 9 Feb 2015 18:53:41 -0800 Subject: Selectively Include and exclude packages in kickstart Message-ID: Hi, The packages section of my kickstart file look something like below %packages libreoffice-langpack-en -libreoffice-langpack-* I want libreoffice-langpack-en to be included during the installation but other language stuff need to be excluded. Unfortunately the above packages section excludes libreoffice-langpack-en as well because of the -libreoffice-langpack-* during pungi compose. How do i avoid this problem? -- Arun S A G http://zer0c00l.in/ From srobson at cadence.com Tue Feb 10 17:15:28 2015 From: srobson at cadence.com (Steve Robson) Date: Tue, 10 Feb 2015 17:15:28 +0000 Subject: Selectively Include and exclude packages in kickstart (Arun SAG) In-Reply-To: References: Message-ID: <54DA3CB0.10202@cadence.com> How about if you reverse the order to become: %packages -libreoffice-langpack-* libreoffice-langpack-en ie. remove all the language packs from the list, then add the one that you do want? Good luck! -Steve kickstart-list-request at redhat.com wrote: > Subject: Selectively Include and exclude packages in kickstart > From: Arun SAG > Date: 02/10/2015 02:53 AM > > To: > > Hi, > > The packages section of my kickstart file look something like below > > %packages > libreoffice-langpack-en > -libreoffice-langpack-* > > I want libreoffice-langpack-en to be included during the installation > but other language stuff need to be excluded. Unfortunately the above > packages section excludes libreoffice-langpack-en as well because of > the -libreoffice-langpack-* during pungi compose. How do i avoid this > problem? From spikewhitetx at gmail.com Wed Feb 11 00:41:43 2015 From: spikewhitetx at gmail.com (Spike White) Date: Tue, 10 Feb 2015 18:41:43 -0600 Subject: Kickstart-list Digest, Vol 129, Issue 1 In-Reply-To: References: Message-ID: Is line order important? I.e., last directive wins? Have you tried? %packages -libreoffice-langpack-* libreoffice-langpack-en On Tue, Feb 10, 2015 at 11:00 AM, wrote: > 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. Selectively Include and exclude packages in kickstart (Arun SAG) > > > ---------- Forwarded message ---------- > From: Arun SAG > To: kickstart-list at redhat.com > Cc: > Date: Mon, 9 Feb 2015 18:53:41 -0800 > Subject: Selectively Include and exclude packages in kickstart > Hi, > > The packages section of my kickstart file look something like below > > %packages > libreoffice-langpack-en > -libreoffice-langpack-* > > I want libreoffice-langpack-en to be included during the installation > but other language stuff need to be excluded. Unfortunately the above > packages section excludes libreoffice-langpack-en as well because of > the -libreoffice-langpack-* during pungi compose. How do i avoid this > problem? > > -- > Arun S A G > http://zer0c00l.in/ > > > > _______________________________________________ > 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 sagarun at gmail.com Wed Feb 11 01:57:53 2015 From: sagarun at gmail.com (Arun SAG) Date: Tue, 10 Feb 2015 17:57:53 -0800 Subject: Selectively Include and exclude packages in kickstart (Arun SAG) In-Reply-To: <54DA3CB0.10202@cadence.com> References: <54DA3CB0.10202@cadence.com> Message-ID: On Tue, Feb 10, 2015 at 9:15 AM, Steve Robson wrote: > How about if you reverse the order to become: > > %packages > -libreoffice-langpack-* > libreoffice-langpack-en > > ie. remove all the language packs from the list, then add the one that you > do want? > > Both %packages -libreoffice-langpack-* libreoffice-langpack-en and %packages libreoffice-langpack-en -libreoffice-langpack-* fails to include libreoffice-langpack-en into the built image. I am composing a F21 image using pungi. -- Arun S A G http://zer0c00l.in/