summaryrefslogtreecommitdiffstats
path: root/perl-install/raid.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-01-27 11:05:15 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-01-27 11:05:15 +0000
commit4b0ec96b42b2d222dbdd886edb4dd65829c60502 (patch)
tree4d80a72ab147c62507bfcafd99da04650d010ba5 /perl-install/raid.pm
parent66987672f5441ccd6d82ed7e50de95f8f375bde8 (diff)
downloaddrakx-4b0ec96b42b2d222dbdd886edb4dd65829c60502.tar
drakx-4b0ec96b42b2d222dbdd886edb4dd65829c60502.tar.gz
drakx-4b0ec96b42b2d222dbdd886edb4dd65829c60502.tar.bz2
drakx-4b0ec96b42b2d222dbdd886edb4dd65829c60502.tar.xz
drakx-4b0ec96b42b2d222dbdd886edb4dd65829c60502.zip
fix "mdadm package not installed" during install (bugzilla #13259)
Diffstat (limited to 'perl-install/raid.pm')
-rw-r--r--perl-install/raid.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/raid.pm b/perl-install/raid.pm
index 08a792065..ba3ecf011 100644
--- a/perl-install/raid.pm
+++ b/perl-install/raid.pm
@@ -17,7 +17,7 @@ sub max_nb() { 31 }
sub check_prog {
my ($in) = @_;
- $in->do_pkgs->ensure_binary_is_installed('mdadm', 'mdadm') or return;
+ $::isInstall || $in->do_pkgs->ensure_binary_is_installed('mdadm', 'mdadm');
}
sub new {