diff options
author | Michael Scherer <misc@mandriva.com> | 2005-11-29 12:49:45 +0000 |
---|---|---|
committer | Michael Scherer <misc@mandriva.com> | 2005-11-29 12:49:45 +0000 |
commit | 1c6110c5924a0dc6c389fc6a7d329dfc6db7e41b (patch) | |
tree | d4c3e8a515c3e42ab3bcb5892548c3cd5f5031b5 /sshd_wizard | |
parent | e65f42c1b0deb2fbaaf27563414b34078f12172e (diff) | |
download | drakwizard-1c6110c5924a0dc6c389fc6a7d329dfc6db7e41b.tar drakwizard-1c6110c5924a0dc6c389fc6a7d329dfc6db7e41b.tar.gz drakwizard-1c6110c5924a0dc6c389fc6a7d329dfc6db7e41b.tar.bz2 drakwizard-1c6110c5924a0dc6c389fc6a7d329dfc6db7e41b.tar.xz drakwizard-1c6110c5924a0dc6c389fc6a7d329dfc6db7e41b.zip |
- use Libconf::Glueconf::Networking::Sshd_config instead of Libconf::Glueconf::Ssh::Sshd_config
( upstream change )
Diffstat (limited to 'sshd_wizard')
-rwxr-xr-x | sshd_wizard/Sshd.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sshd_wizard/Sshd.pm b/sshd_wizard/Sshd.pm index 9d54224c..3e35b7b4 100755 --- a/sshd_wizard/Sshd.pm +++ b/sshd_wizard/Sshd.pm @@ -26,7 +26,7 @@ use common; use services; use MDK::Wizard::Wizcommon; use Libconf::Templates; -use Libconf::Glueconf::Ssh::Sshd_config; +use Libconf::Glueconf::Networking::Sshd_config; my $wiz = new MDK::Wizard::Wizcommon; @@ -35,7 +35,7 @@ my $DOMAINNAME = chomp_(`dnsdomainname`); my $SHORTHOSTNAME = chomp_(`hostname -s`); # 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' }); +my $sshd = new Libconf::Glueconf::Networking::Sshd_config({ filename => '/etc/ssh/sshd_config' }); # ------ debug use Data::Dumper; |