On Wed, Oct 22, 2014 at 8:00 AM, Stephen Berg (Contractor) <[email protected]> wrote: > > If I put in a group to be installed that includes a package I don't want to > install what's the proper way to set that up?
Not sure about "proper", but I have found that "-Package" in the %packages section rarely does what I want. So I just remove unwanted stuff in the %post section like so: rpm -e Package or yum --disablerepo=\* --assumeyes remove Package The former will fail if Package is required by something else installed on the system. The latter will remove Package and everything that requires it, recursively. - Pat
