summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/diskdrake
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-02-03 23:12:19 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-02-03 23:12:19 +0000
commit3f6115120e8d6c908d2ed5d9280ed3fc43c8c00a (patch)
treed1337862e7295970c5a52b4c2c83c8eb1c26502e /perl-install/standalone/diskdrake
parent9fb17cbfdad14d8df94c3280431ccaadf04933d5 (diff)
downloaddrakx-backup-do-not-use-3f6115120e8d6c908d2ed5d9280ed3fc43c8c00a.tar
drakx-backup-do-not-use-3f6115120e8d6c908d2ed5d9280ed3fc43c8c00a.tar.gz
drakx-backup-do-not-use-3f6115120e8d6c908d2ed5d9280ed3fc43c8c00a.tar.bz2
drakx-backup-do-not-use-3f6115120e8d6c908d2ed5d9280ed3fc43c8c00a.tar.xz
drakx-backup-do-not-use-3f6115120e8d6c908d2ed5d9280ed3fc43c8c00a.zip
don't "use diskdrake::interactive", only require it when needed
Diffstat (limited to 'perl-install/standalone/diskdrake')
-rwxr-xr-xperl-install/standalone/diskdrake3
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/standalone/diskdrake b/perl-install/standalone/diskdrake
index 285557781..4d359cb09 100755
--- a/perl-install/standalone/diskdrake
+++ b/perl-install/standalone/diskdrake
@@ -27,7 +27,6 @@ use lib qw(/usr/lib/libDrakX);
use standalone; #- warning, standalone must be loaded very first, for 'explanations'
use common;
-use diskdrake::interactive;
use interactive;
use detect_devices;
use fsedit;
@@ -35,7 +34,6 @@ use fs;
use log;
use c;
-
my %options;
my @l = @ARGV;
while (my $e = shift @l) {
@@ -83,6 +81,7 @@ fs::merge_info_from_mtab([ fsedit::get_really_all_fstab($all_hds) ]);
$all_hds->{current_fstab} = fs::fstab_to_string($all_hds);
if ($type eq 'hd') {
+ require diskdrake::interactive;
diskdrake::interactive::main($in, $all_hds);
} elsif ($type eq 'removable') {
require diskdrake::removable;