diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-09-17 11:29:16 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-09-17 11:29:16 +0000 |
commit | 21e28d189899b6870fa2f7b5f08be47846db7f90 (patch) | |
tree | 1c56cc65334ab72762b5b5da21aabac1470d4fc8 /perl-install/fs.pm | |
parent | ad78b8e39cf20d8962eb1b594844d6c36df8bf53 (diff) | |
download | drakx-21e28d189899b6870fa2f7b5f08be47846db7f90.tar drakx-21e28d189899b6870fa2f7b5f08be47846db7f90.tar.gz drakx-21e28d189899b6870fa2f7b5f08be47846db7f90.tar.bz2 drakx-21e28d189899b6870fa2f7b5f08be47846db7f90.tar.xz drakx-21e28d189899b6870fa2f7b5f08be47846db7f90.zip |
ensure that a number is not written as the type in fstab
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r-- | perl-install/fs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index f20aaf849..8f7b45809 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -240,7 +240,7 @@ sub prepare_write_fstab { } } - my $type = type2fs($_); + my $type = type2fs($_, 'auto'); my $dev = $_->{device_LABEL} ? $_->{device_LABEL} : |