diff options
author | Pascal Terjan <pterjan@mandriva.org> | 2010-05-13 17:15:26 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mandriva.org> | 2010-05-13 17:15:26 +0000 |
commit | ae0d8fbfc6f2c3b5659c82e7a5be6eb7de4c82ee (patch) | |
tree | 9354ed86565c0937d921a84bbe8f2b4251c0c9ad /perl-install/fs/mount_options.pm | |
parent | c6ef10bb0b4734cefbe3cf0eb337ada066b1602a (diff) | |
download | drakx-ae0d8fbfc6f2c3b5659c82e7a5be6eb7de4c82ee.tar drakx-ae0d8fbfc6f2c3b5659c82e7a5be6eb7de4c82ee.tar.gz drakx-ae0d8fbfc6f2c3b5659c82e7a5be6eb7de4c82ee.tar.bz2 drakx-ae0d8fbfc6f2c3b5659c82e7a5be6eb7de4c82ee.tar.xz drakx-ae0d8fbfc6f2c3b5659c82e7a5be6eb7de4c82ee.zip |
enable acl in fstab not on the fs as we currently do not handle options on the fs in an unified way and have no way to check if they are set in the apps
Diffstat (limited to 'perl-install/fs/mount_options.pm')
-rw-r--r-- | perl-install/fs/mount_options.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/fs/mount_options.pm b/perl-install/fs/mount_options.pm index 899356daa..ee8099b93 100644 --- a/perl-install/fs/mount_options.pm +++ b/perl-install/fs/mount_options.pm @@ -239,6 +239,9 @@ sub set_default { $options->{notail} = 1; $options->{user_xattr} = 1; } + if (member($part->{fs_type}, qw(ext2 ext3 ext4)) { + $options->{acl} = 1; + } if (isLoopback($part) && !isSwap($part)) { #- no need for loop option for swap files $options->{loop} = 1; } |