diff options
author | Antoine Ginies <aginies@mandriva.com> | 2011-02-17 13:40:38 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2011-02-17 13:40:38 +0000 |
commit | 9d64eb8f3723f4fd67c43ba50dbd15ccd1342771 (patch) | |
tree | dca10178d627c611784916e319036b5eaccf4c3e | |
parent | a9942d0bfc8ad631305f90d55f911cb77a2776b3 (diff) | |
download | drakx-backup-do-not-use-9d64eb8f3723f4fd67c43ba50dbd15ccd1342771.tar drakx-backup-do-not-use-9d64eb8f3723f4fd67c43ba50dbd15ccd1342771.tar.gz drakx-backup-do-not-use-9d64eb8f3723f4fd67c43ba50dbd15ccd1342771.tar.bz2 drakx-backup-do-not-use-9d64eb8f3723f4fd67c43ba50dbd15ccd1342771.tar.xz drakx-backup-do-not-use-9d64eb8f3723f4fd67c43ba50dbd15ccd1342771.zip |
remove ext4
-rw-r--r-- | perl-install/fs/format.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fs/format.pm b/perl-install/fs/format.pm index 9d328964b..931405eea 100644 --- a/perl-install/fs/format.pm +++ b/perl-install/fs/format.pm @@ -151,7 +151,7 @@ sub part_raw { my $fs_type = $part->{fs_type}; - if (member($fs_type, qw(ext2 ext3 ext4))) { + if (member($fs_type, qw(ext2 ext3))) { push @options, "-m", "0" if $part->{mntpoint} =~ m|^/home|; } elsif (isDos($part)) { $fs_type = 'dos'; @@ -162,7 +162,7 @@ sub part_raw { } # Preserve UUID - if (member($fs_type, 'swap', 'ext2', 'ext3', 'ext4')) { + if (member($fs_type, 'swap', 'ext2', 'ext3')) { push @options, '-U', $part->{device_UUID} if $part->{device_UUID}; } elsif ($fs_type eq 'reiserfs') { push @options, '-u', $part->{device_UUID} if $part->{device_UUID}; |