From 30b85826e56eb7445e2bb271fd0d2ab395f84e9e Mon Sep 17 00:00:00 2001 From: Antoine Ginies Date: Tue, 7 Jun 2005 05:33:37 +0000 Subject: new wizard --- sshd_wizard/Sshd.pm | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100755 sshd_wizard/Sshd.pm (limited to 'sshd_wizard/Sshd.pm') diff --git a/sshd_wizard/Sshd.pm b/sshd_wizard/Sshd.pm new file mode 100755 index 00000000..e8c3b21d --- /dev/null +++ b/sshd_wizard/Sshd.pm @@ -0,0 +1,46 @@ +#!/usr/bin/perl + +# Drakwizard +# Copyright (C) 2002,2005 Mandriva +# +# Authors: antoine Ginies +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +package MDK::Wizard::Sshd; +use strict; + +use common; +use services; +use MDK::Wizard::Wizcommon; + +use Libconf::Templates; +use Libconf::Glueconf::Ssh::Sshd_config; + + +my $wiz = new MDK::Wizard::Wizcommon; + +my $conf = "/etc/ssh/sshd_config"; +# remove anoying \t in /etc/ssh/sshd_config to permit Glueconf to read it +substInFile { s/\t/ /gi } $conf; + +# we ask glueconf to give us the structure representing /etc/ssh/sshd_config +my $sshd = new Libconf::Glueconf::Ssh::Sshd_config({ filename => '/etc/ssh/sshd_config' }); + +#debug +use Data::Dumper; +print Dumper($sshd); + +1; -- cgit v1.2.1