summaryrefslogtreecommitdiffstats
path: root/perl-install/fs.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-09-30 21:10:04 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-09-30 21:10:04 +0000
commit1bec15a4e0ced39be27bc15c16aa2db8621e36a2 (patch)
treeca8a8e2fca42f20f2cdfec18705c1a774c380ffc /perl-install/fs.pm
parentb6569eddfd4b1befa1afe8c69b0814bb09a0aa4e (diff)
downloaddrakx-backup-do-not-use-1bec15a4e0ced39be27bc15c16aa2db8621e36a2.tar
drakx-backup-do-not-use-1bec15a4e0ced39be27bc15c16aa2db8621e36a2.tar.gz
drakx-backup-do-not-use-1bec15a4e0ced39be27bc15c16aa2db8621e36a2.tar.bz2
drakx-backup-do-not-use-1bec15a4e0ced39be27bc15c16aa2db8621e36a2.tar.xz
drakx-backup-do-not-use-1bec15a4e0ced39be27bc15c16aa2db8621e36a2.zip
drop "notail" when filesystem is not reiserfs
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r--perl-install/fs.pm2
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;