From 1626bb197847f87e904a88482207455bdd94d7f0 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Sun, 30 Dec 2001 21:49:53 +0000 Subject: format home directories with "-m 0" for ext2&ext3, so that the root reserved part is 0% (and not 5%) --- perl-install/fs.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/perl-install/fs.pm b/perl-install/fs.pm index c0783d945..160d939a3 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -493,8 +493,10 @@ sub real_format_part { if (isExt2($part)) { push @options, "-F" if isLoopback($part); + push @options, "-m", "0" if $part->{mntpoint} =~ m|^/home|; format_ext2($part->{device}, @options); } elsif (isThisFs("ext3", $part)) { + push @options, "-m", "0" if $part->{mntpoint} =~ m|^/home|; format_ext3($part->{device}, @options); } elsif (isThisFs("reiserfs", $part)) { format_reiserfs($part->{device}, @options, if_(c::kernel_version() =~ /^\Q2.2/, "-v", "1")); -- cgit v1.2.1