For my future reference, here's the pykickstart patch: --- a/pykickstart/data.py +++ b/pykickstart/data.py @@ -32,7 +32,7 @@ class KickstartData: self.deviceprobe = "" self.displayMode = DISPLAY_MODE_GRAPHICAL self.driverdisk = "" - self.firewall = {"enabled": True, "ports": [], "trusts": []} + self.firewall = {"enabled": True, "ports": [], "trusts": [], "disableSsh": False} self.firstboot = FIRSTBOOT_SKIP self.ignoredisk = {"drives": [], "onlyuse": []} self.interactive = False diff --git a/pykickstart/parser.py b/pykickstart/parser.py index f1c6984..d3129ac 100644 --- a/pykickstart/parser.py +++ b/pykickstart/parser.py @@ -410,6 +410,8 @@ class KickstartHandlers: op.add_option("--port", dest="ports", action="callback", callback=firewall_port_cb, nargs=1, type="string") op.add_option("--trust", dest="trusts", action="append") + op.add_option("--no-ssh", dest="disableSsh", action="store_true", + default=False) (opts, extra) = op.parse_args(args=args) self._setToDict(op, opts, self.ksdata.firewall)
Tested with pykickstart-1.68-1.el5 and anaconda-11.1.2.232-1. My ks.cfg contained: firewall --enabled --no-ssh ssh access was not configured in the firewall.
An advisory has been issued which should help the problem described in this bug report. This report is therefore being closed with a resolution of ERRATA. For more information on therefore solution and/or where to find the updated files, please follow the link below. You may reopen this bug report if the solution does not work for you. http://rhn.redhat.com/errata/RHBA-2011-1022.html