diff options
author | Pascal Terjan <pterjan@mandriva.org> | 2009-01-05 16:57:52 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mandriva.org> | 2009-01-05 16:57:52 +0000 |
commit | 743f3306895bfb0da0062f6f1db7031fc2f23de7 (patch) | |
tree | cd94e3589645010c8fd2d7c3928cf3ca5c4a16a7 /perl-install/fs/mount.pm | |
parent | 74076cc2c94e5bf7fea146b4a7ac2e09169d7d0b (diff) | |
download | drakx-743f3306895bfb0da0062f6f1db7031fc2f23de7.tar drakx-743f3306895bfb0da0062f6f1db7031fc2f23de7.tar.gz drakx-743f3306895bfb0da0062f6f1db7031fc2f23de7.tar.bz2 drakx-743f3306895bfb0da0062f6f1db7031fc2f23de7.tar.xz drakx-743f3306895bfb0da0062f6f1db7031fc2f23de7.zip |
- ext4dev is now stable and called ext4 in 2.6.28+
Diffstat (limited to 'perl-install/fs/mount.pm')
-rw-r--r-- | perl-install/fs/mount.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fs/mount.pm b/perl-install/fs/mount.pm index 6dc312049..2ea0cdc7f 100644 --- a/perl-install/fs/mount.pm +++ b/perl-install/fs/mount.pm @@ -35,7 +35,7 @@ sub mount { $fs or log::l("not mounting $dev partition"), return; { - my @fs_modules = qw(ext3 ext4dev hfs jfs nfs ntfs romfs reiserfs ufs xfs vfat); + my @fs_modules = qw(ext3 ext4 hfs jfs nfs ntfs romfs reiserfs ufs xfs vfat); my @types = (qw(ext2 proc sysfs usbfs usbdevfs iso9660 devfs devpts auto ntfs-3g), @fs_modules); push @types, 'smb', 'smbfs', 'davfs2' if !$::isInstall; @@ -172,7 +172,7 @@ sub part { } mount($dev, $mntpoint, $fs_type, $b_rdonly, $options, $o_wait_message); - if ($options =~ /usrquota|grpquota/ && member($part->{fs_type}, qw(ext3 ext4dev))) { + if ($options =~ /usrquota|grpquota/ && member($part->{fs_type}, qw(ext3 ext4))) { if (! find { -e "$mntpoint/$_" } qw(aquota.user aquota.group quota.user quota.group)) { #- quotacheck will create aquota.user and/or aquota.group, #- needed for quotas on ext3/ext4. |