diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-09-04 21:35:45 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-09-04 21:35:45 +0000 |
commit | 53b5dac0f90461a932b1ceb4f9379eb60ebbd3d2 (patch) | |
tree | 3e6647d6fb0a8aa057b7b33fe08b53497611d174 /perl-install | |
parent | 3cb526345e0ca7a5105daeadc0f72eb4683ffdd9 (diff) | |
download | drakx-53b5dac0f90461a932b1ceb4f9379eb60ebbd3d2.tar drakx-53b5dac0f90461a932b1ceb4f9379eb60ebbd3d2.tar.gz drakx-53b5dac0f90461a932b1ceb4f9379eb60ebbd3d2.tar.bz2 drakx-53b5dac0f90461a932b1ceb4f9379eb60ebbd3d2.tar.xz drakx-53b5dac0f90461a932b1ceb4f9379eb60ebbd3d2.zip |
do not use standalone (so that no "explaination" are generated)
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/drakupdate_fstab | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakupdate_fstab b/perl-install/standalone/drakupdate_fstab index dbb566322..4abefb397 100755 --- a/perl-install/standalone/drakupdate_fstab +++ b/perl-install/standalone/drakupdate_fstab @@ -19,8 +19,6 @@ use lib qw(/usr/lib/libDrakX); -use standalone; #- warning, standalone must be loaded very first, for 'explanations' - use detect_devices; use common; use fsedit; @@ -28,6 +26,8 @@ use lang; use any; use fs; +$::isStandalone = 1; #- not using standalone.pm which generates too many logs for drakupdate_fstab purpose + $::testing = $ARGV[0] eq '--test' && shift; $::auto = $ARGV[0] eq '--auto' && shift; my ($raw_action, $device_name) = @ARGV; |