From 9d64eb8f3723f4fd67c43ba50dbd15ccd1342771 Mon Sep 17 00:00:00 2001 From: Antoine Ginies Date: Thu, 17 Feb 2011 13:40:38 +0000 Subject: remove ext4 --- perl-install/fs/format.pm | 4 ++-- 1 file 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}; -- cgit v1.2.1