summaryrefslogtreecommitdiffstats
path: root/perl-install/fs.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-08-31 19:52:12 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-08-31 19:52:12 +0000
commit6f55336aaccdde0f5a78ac3b818249997e8eff57 (patch)
tree645dcfae7925e3b8f6435a100910f200ce325b4c /perl-install/fs.pm
parent86b55a2449ff43d0f6f54efd0cf2fb91f4be0e84 (diff)
downloaddrakx-backup-do-not-use-6f55336aaccdde0f5a78ac3b818249997e8eff57.tar
drakx-backup-do-not-use-6f55336aaccdde0f5a78ac3b818249997e8eff57.tar.gz
drakx-backup-do-not-use-6f55336aaccdde0f5a78ac3b818249997e8eff57.tar.bz2
drakx-backup-do-not-use-6f55336aaccdde0f5a78ac3b818249997e8eff57.tar.xz
drakx-backup-do-not-use-6f55336aaccdde0f5a78ac3b818249997e8eff57.zip
don't check ext3 filesystems nor mount them as ext2 during upgrade (bug #5067)
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r--perl-install/fs.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm
index 330baf1b1..7d2ecf6aa 100644
--- a/perl-install/fs.pm
+++ b/perl-install/fs.pm
@@ -721,7 +721,7 @@ sub mount {
my $err = $?;
die "fsck.jfs failed" if $err & 0xfc00;
};
- } elsif ($fs eq 'ext2' || $fs eq 'ext3' && $::isInstall) {
+ } elsif ($fs eq 'ext2' || $fs eq 'ext3' && $::isInstall && !$::o->{isUpgrade}) {
if (!$b_rdonly) {
$o_wait_message->(N("Checking %s", $dev)) if $o_wait_message;
foreach ('-a', '-y') {