[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH rhel5-branch] Add "firewall --no-ssh" option (#681944).
- From: Chris Lumens <clumens redhat com>
- To: anaconda-devel-list redhat com
- Subject: [PATCH rhel5-branch] Add "firewall --no-ssh" option (#681944).
- Date: Tue, 8 Mar 2011 13:18:05 -0500
---
pykickstart/data.py | 2 +-
pykickstart/parser.py | 2 ++
2 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/pykickstart/data.py b/pykickstart/data.py
index dc816c1..9549aed 100644
--- 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)
--
1.7.4.1
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]