1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

Fix up the man pages to explain that "store dos attributes" overrides them.

Signed-off-by: Jeremy Allison <jra@samba.org>

Reviewed-by: Andrew Bartlett <abartlet@samba.org>

Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Tue May  7 01:24:54 CEST 2013 on sn-devel-104
This commit is contained in:
Jeremy Allison 2013-05-06 14:10:58 -07:00 committed by Andrew Bartlett
parent d25ba3f5a6
commit 8ca4b7597d
5 changed files with 26 additions and 2 deletions

View File

@ -12,6 +12,12 @@
be quite annoying for shared source code, documents, etc...
</para>
<para>
Note that this parameter will be ignored if the <smbconfoption name="store dos attributes"/>
parameter is set, as the DOS archive attribute will then be stored inside a UNIX extended
attribute.
</para>
<para>
Note that this requires the <smbconfoption name="create mask"/> parameter to be set such that owner
execute bit is not masked out (i.e. it must include 100). See the parameter

View File

@ -7,6 +7,12 @@
This controls whether DOS style hidden files should be mapped to the UNIX world execute bit.
</para>
<para>
Note that this parameter will be ignored if the <smbconfoption name="store dos attributes"/>
parameter is set, as the DOS hidden attribute will then be stored inside a UNIX extended
attribute.
</para>
<para>
Note that this requires the <smbconfoption name="create mask"/> to be set such that the world execute
bit is not masked out (i.e. it must include 001). See the parameter <smbconfoption name="create mask"/>

View File

@ -42,6 +42,12 @@
</para></listitem>
</itemizedlist>
<para>
Note that this parameter will be ignored if the <smbconfoption name="store dos attributes"/>
parameter is set, as the DOS 'read-only' attribute will then be stored inside a UNIX extended
attribute.
</para>
</description>
<value type="default">yes</value>
</samba:parameter>

View File

@ -7,6 +7,12 @@
This controls whether DOS style system files should be mapped to the UNIX group execute bit.
</para>
<para>
Note that this parameter will be ignored if the <smbconfoption name="store dos attributes"/>
parameter is set, as the DOS system attribute will then be stored inside a UNIX extended
attribute.
</para>
<para>
Note that this requires the <smbconfoption name="create mask"/> to be set such that the group
execute bit is not masked out (i.e. it must include 010). See the parameter

View File

@ -8,9 +8,9 @@
READ-ONLY) from a filesystem extended attribute, before mapping DOS attributes to UNIX permission bits (such
as occurs with <smbconfoption name="map hidden"/> and <smbconfoption name="map readonly"/>). When set, DOS
attributes will be stored onto an extended attribute in the UNIX filesystem, associated with the file or
directory. For no other mapping to occur as a fall-back, the parameters <smbconfoption name="map hidden"/>,
directory. When this parameter is set it will override the parameters <smbconfoption name="map hidden"/>,
<smbconfoption name="map system"/>, <smbconfoption name="map archive"/> and <smbconfoption name="map
readonly"/> must be set to off. This parameter writes the DOS attributes as a string into the extended
readonly"/> and they will behave as if they were set to off. This parameter writes the DOS attributes as a string into the extended
attribute named "user.DOSATTRIB". This extended attribute is explicitly hidden from smbd clients requesting an
EA list. On Linux the filesystem must have been mounted with the mount option user_xattr in order for
extended attributes to work, also extended attributes must be compiled into the Linux kernel.