[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: [PATCH rhel5-branch] Allow blocking the ssh port through kickstart (#485086).
- From: David Cantrell <dcantrell redhat com>
- To: Discussion of Development and Customization of the Red Hat Linux Installer <anaconda-devel-list redhat com>
- Subject: Re: [PATCH rhel5-branch] Allow blocking the ssh port through kickstart (#485086).
- Date: Tue, 08 Mar 2011 08:53:41 -1000
Ack.
Chris Lumens <clumens redhat com> wrote:
> ---
> installclass.py | 7 +++++--
> kickstart.py | 2 +-
> 2 files changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/installclass.py b/installclass.py
> index 9a34363..36665cf 100644
> --- a/installclass.py
> +++ b/installclass.py
> @@ -305,13 +305,16 @@ class BaseInstallClass:
> def setSELinux(self, id, sel):
> id.security.setSELinux(sel)
>
> - def setFirewall(self, id, enable = 1, trusts = [], ports = []):
> + def setFirewall(self, id, enable = 1, trusts = [], ports = [], disableSsh = False):
> id.firewall.enabled = enable
> id.firewall.trustdevs = trusts
>
> for port in ports:
> id.firewall.portlist.append (port)
> -
> +
> + if disableSsh:
> + id.firewall.portlist.remove("22:tcp")
> +
> def setMiscXSettings(self, id, depth = None, resolution = None,
> desktop = None, runlevel = None):
>
> diff --git a/kickstart.py b/kickstart.py
> index 46c6c1f..5f40e61 100644
> --- a/kickstart.py
> +++ b/kickstart.py
> @@ -197,7 +197,7 @@ class AnacondaKSHandlers(KickstartHandlers):
> KickstartHandlers.doFirewall(self, args)
> dict = self.ksdata.firewall
> self.id.instClass.setFirewall(self.id, dict["enabled"], dict["trusts"],
> - dict["ports"])
> + dict["ports"], disableSsh=dict["disableSsh"])
>
> def doFirstboot(self, args):
> KickstartHandlers.doFirstboot(self, args)
> --
> 1.7.4.1
>
> _______________________________________________
> Anaconda-devel-list mailing list
> Anaconda-devel-list redhat com
> https://www.redhat.com/mailman/listinfo/anaconda-devel-list
--
David Cantrell <dcantrell redhat com>
Supervisor, Installer Engineering Team
Red Hat, Inc. | Honolulu, HI | UTC-10
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]