From 126777bc019a54afb4ec51299f2cf9d2841698aa Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 25 Apr 2007 12:26:16 +0000 Subject: re-sync after the big svn loss --- perl-install/standalone/lsnetdrake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'perl-install/standalone/lsnetdrake') diff --git a/perl-install/standalone/lsnetdrake b/perl-install/standalone/lsnetdrake index d6233209d..41fcd3b30 100755 --- a/perl-install/standalone/lsnetdrake +++ b/perl-install/standalone/lsnetdrake @@ -2,8 +2,8 @@ use lib qw(/usr/lib/libDrakX); use standalone; -use network::nfs; -use network::smb; +use fs::remote::nfs; +use fs::remote::smb; use MDK::Common::Func qw(if_); "@ARGV" =~ /-h/ and die "usage: lsnetdrake [-h] [--nfs] [--smb]\n"; @@ -14,7 +14,7 @@ my $smb = !@ARGV || "@ARGV" =~ /-(smb)/; $| = 1; $ENV{PATH} = "/sbin:/usr/sbin:$ENV{PATH}"; -foreach my $class (if_($nfs, network::nfs->new), if_($smb, network::smb->new)) { +foreach my $class (if_($nfs, fs::remote::nfs->new), if_($smb, fs::remote::smb->new)) { foreach my $server (sort_names($class->find_servers)) { foreach (sort_names(eval { $class->find_exports($server) })) { print $class->to_fullstring($_), "\n"; -- cgit v1.2.1