summaryrefslogtreecommitdiffstats
path: root/perl-install/fs
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mandriva.org>2010-05-13 14:47:59 +0000
committerPascal Terjan <pterjan@mandriva.org>2010-05-13 14:47:59 +0000
commitee883e1519c76121422dc1cccb1f9f1d17f6e244 (patch)
tree202122565279d6dcab9ae8ea78e50971021bb2dc /perl-install/fs
parent613fcd7af22bfec6c5580528079523d8aac9113b (diff)
downloaddrakx-backup-do-not-use-ee883e1519c76121422dc1cccb1f9f1d17f6e244.tar
drakx-backup-do-not-use-ee883e1519c76121422dc1cccb1f9f1d17f6e244.tar.gz
drakx-backup-do-not-use-ee883e1519c76121422dc1cccb1f9f1d17f6e244.tar.bz2
drakx-backup-do-not-use-ee883e1519c76121422dc1cccb1f9f1d17f6e244.tar.xz
drakx-backup-do-not-use-ee883e1519c76121422dc1cccb1f9f1d17f6e244.zip
allow setting acl option in diskdrake
Diffstat (limited to 'perl-install/fs')
-rw-r--r--perl-install/fs/mount_options.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/fs/mount_options.pm b/perl-install/fs/mount_options.pm
index 5bcb333b9..899356daa 100644
--- a/perl-install/fs/mount_options.pm
+++ b/perl-install/fs/mount_options.pm
@@ -12,7 +12,7 @@ sub list() {
my %non_defaults = (
sync => 'async', noatime => 'atime', noauto => 'auto', ro => 'rw',
user => 'nouser', nodev => 'dev', noexec => 'exec', nosuid => 'suid',
- user_xattr => 'nouser_xattr',
+ user_xattr => 'nouser_xattr', acl => 'noacl',
);
my @user_implies = qw(noexec nodev nosuid);
\%non_defaults, \@user_implies;
@@ -109,6 +109,7 @@ sub pack {
# update me on each util-linux new release:
sub help() {
(
+ 'acl' => N("Enable Posix Access Control Lists"),
'flush' => N("Flush write cache on file close"),