diff options
author | Pascal Terjan <pterjan@mandriva.org> | 2010-05-13 14:47:59 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mandriva.org> | 2010-05-13 14:47:59 +0000 |
commit | ee883e1519c76121422dc1cccb1f9f1d17f6e244 (patch) | |
tree | 202122565279d6dcab9ae8ea78e50971021bb2dc /perl-install | |
parent | 613fcd7af22bfec6c5580528079523d8aac9113b (diff) | |
download | drakx-ee883e1519c76121422dc1cccb1f9f1d17f6e244.tar drakx-ee883e1519c76121422dc1cccb1f9f1d17f6e244.tar.gz drakx-ee883e1519c76121422dc1cccb1f9f1d17f6e244.tar.bz2 drakx-ee883e1519c76121422dc1cccb1f9f1d17f6e244.tar.xz drakx-ee883e1519c76121422dc1cccb1f9f1d17f6e244.zip |
allow setting acl option in diskdrake
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/fs/mount_options.pm | 3 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 |
3 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index cca0cf9c8..e156ac2cf 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,5 +1,6 @@ - enable acl by default on ext3/4 fs - enable user_xattr on home for ext2 too +- allow setting acl option in diskdrake Version 13.25 - 11 May 2010 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"), diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 0e86183b5..b6071ce3b 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,6 @@ - enable acl by default on ext3/4 fs - enable user_xattr on home for ext2 too +- allow setting acl option in diskdrake Version 13.24 - 9 May 2010 |