Re: Selectively Include and exclude packages in kickstart (Arun SAG)

Steve Robson <[email protected]> Tue, 10 Feb 2015 17:15:28 +0000
Newsgroups gmane.linux.redhat.kickstart.general
Organization Cadence Design Systems
Message-ID <[email protected]>
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

[email protected] wrote:
> Subject: Selectively Include and exclude packages in kickstart
> From: Arun SAG <[email protected]>
> Date: 02/10/2015 02:53 AM
>
> To: <[email protected]>
>
> 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?