summaryrefslogtreecommitdiffstats
path: root/sshd_wizard
diff options
context:
space:
mode:
authorAntoine Ginies <aginies@mandriva.com>2005-06-07 05:33:37 +0000
committerAntoine Ginies <aginies@mandriva.com>2005-06-07 05:33:37 +0000
commit30b85826e56eb7445e2bb271fd0d2ab395f84e9e (patch)
tree6367a984b402a8bfbd63655b01169cb5d7683a2f /sshd_wizard
parentf94cf1e3eada7c8dfbc9d7824185104779b898a3 (diff)
downloaddrakwizard-30b85826e56eb7445e2bb271fd0d2ab395f84e9e.tar
drakwizard-30b85826e56eb7445e2bb271fd0d2ab395f84e9e.tar.gz
drakwizard-30b85826e56eb7445e2bb271fd0d2ab395f84e9e.tar.bz2
drakwizard-30b85826e56eb7445e2bb271fd0d2ab395f84e9e.tar.xz
drakwizard-30b85826e56eb7445e2bb271fd0d2ab395f84e9e.zip
new wizard
Diffstat (limited to 'sshd_wizard')
-rwxr-xr-xsshd_wizard/Sshd.pm46
1 files changed, 46 insertions, 0 deletions
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 <aginies@mandriva>
+#
+# 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;