Anaconda bug with minimal install with 6.6

Support for security such as Firewalls and securing linux
Post Reply
OuldeFauder
Posts: 71
Joined: 2010/10/12 17:16:07

Anaconda bug with minimal install with 6.6

Post by OuldeFauder » 2015/03/11 02:03:30

A minimal install does not produce iptables in sysconfig. Redhat has a fix for this.

Documented in the following knowledge article:

No /etc/sysconfig/iptables after RHEL 6.6 minimal install
https://access.redhat.com/solutions/1361093

I do not have a subscription. Does anyone know the fix (workaround) when installed from cd.

User avatar
ghost2097
Posts: 3
Joined: 2015/03/11 08:39:07

Re: Anaconda bug with minimal install with 6.6

Post by ghost2097 » 2015/03/11 11:45:19

The authconfig and system-config-firewall-base packages are needed to configure the firewall during install time but for some reason this is failing with RHEL 6.6.

This issue is being tracked on Bugzilla 1161682.

As a workaround, the following packages can be installed post install or simply add these packages to the kickstart file ks.cfg:

%packages
@core
authconfig
system-config-firewall-base

User avatar
TrevorH
Site Admin
Posts: 33220
Joined: 2009/09/24 10:40:56
Location: Brighton, UK

Re: Anaconda bug with minimal install with 6.6

Post by TrevorH » 2015/03/11 14:58:51

No, you really do:
Subscriber content preview. A subscription is required for full access to the Red Hat Knowledgebase. Learn more about the benefits of Red Hat Subscriptions.
The future appears to be RHEL or Debian. I think I'm going Debian.
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are deadest, do not use them.
Use the FAQ Luke

OuldeFauder
Posts: 71
Joined: 2010/10/12 17:16:07

Re: Anaconda bug with minimal install with 6.6

Post by OuldeFauder » 2015/03/11 21:49:58

ghost2097 wrote:The authconfig and system-config-firewall-base packages are needed to configure the firewall during install time but for some reason this is failing with RHEL 6.6.

This issue is being tracked on Bugzilla 1161682.

As a workaround, the following packages can be installed post install or simply add these packages to the kickstart file ks.cfg:

%packages
@core
authconfig
system-config-firewall-base

Thanks, I'll give this a try. I was missing %packages and @core only new about the other two. Not really interested in buying a subscription just to play with a minimal install when the server install works fine.

OuldeFauder
Posts: 71
Joined: 2010/10/12 17:16:07

Re: Anaconda bug with minimal install with 6.6

Post by OuldeFauder » 2015/03/11 23:26:24

Thanks Ghost got it now.
%packages must be a C++ like command to pass parameters from the kick start file. Been a long while since I did any programming. Did the install on the other three and added iptables to sysconfig folder and got it working.

User avatar
ghost2097
Posts: 3
Joined: 2015/03/11 08:39:07

Re: Anaconda bug with minimal install with 6.6

Post by ghost2097 » 2015/03/12 08:54:20

OuldeFauder wrote:Thanks Ghost got it now.
%packages must be a C++ like command to pass parameters from the kick start file. Been a long while since I did any programming. Did the install on the other three and added iptables to sysconfig folder and got it working.
Sorry about the confusion OuldeFauder, the wording in the post was directly from the knowledge base solution page, and is a little ambiguous. It should read like this.

As a workaround, the following packages can be installed post install:
authconfig
system-config-firewall-base

or simply add these packages to the kickstart file ks.cfg:
%packages
@core
authconfig
system-config-firewall-base

Post Reply