diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-09-30 21:10:04 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-09-30 21:10:04 +0000 |
commit | 1bec15a4e0ced39be27bc15c16aa2db8621e36a2 (patch) | |
tree | ca8a8e2fca42f20f2cdfec18705c1a774c380ffc /perl-install | |
parent | b6569eddfd4b1befa1afe8c69b0814bb09a0aa4e (diff) | |
download | drakx-1bec15a4e0ced39be27bc15c16aa2db8621e36a2.tar drakx-1bec15a4e0ced39be27bc15c16aa2db8621e36a2.tar.gz drakx-1bec15a4e0ced39be27bc15c16aa2db8621e36a2.tar.bz2 drakx-1bec15a4e0ced39be27bc15c16aa2db8621e36a2.tar.xz drakx-1bec15a4e0ced39be27bc15c16aa2db8621e36a2.zip |
drop "notail" when filesystem is not reiserfs
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fs.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 7eaf61711..560d1f7cf 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -468,6 +468,8 @@ sub set_default_options { } if (isThisFs('reiserfs', $part)) { $options->{notail} = 1; + } else { + $options->{notail} = 0; } if (isLoopback($part) && !isSwap($part)) { #- no need for loop option for swap files $options->{loop} = 1; |