diff options
author | Herb Lewis <herb@samba.org> | 2002-02-06 22:27:43 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2002-02-06 22:27:43 +0000 |
commit | 626598cb1c0f2ba9a216b40d20b892218ec1759d (patch) | |
tree | 6f11c5ad773bea607039ada1215cb85d94b357ce | |
parent | 84cb9a78b565c88a8289f2266ee947d6f1d14ccc (diff) | |
download | samba-626598cb1c0f2ba9a216b40d20b892218ec1759d.tar.gz samba-626598cb1c0f2ba9a216b40d20b892218ec1759d.tar.xz samba-626598cb1c0f2ba9a216b40d20b892218ec1759d.zip |
re-added definition of share modes
someone needs to regenerate docs
-rw-r--r-- | docs/docbook/manpages/smb.conf.5.sgml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/docs/docbook/manpages/smb.conf.5.sgml b/docs/docbook/manpages/smb.conf.5.sgml index 44ff2205c90..ddb8a7ec9b4 100644 --- a/docs/docbook/manpages/smb.conf.5.sgml +++ b/docs/docbook/manpages/smb.conf.5.sgml @@ -877,6 +877,7 @@ <listitem><para><link linkend="ROOTPREEXECCLOSE"><parameter>root preexec close</parameter></link></para></listitem> <listitem><para><link linkend="SECURITYMASK"><parameter>security mask</parameter></link></para></listitem> <listitem><para><link linkend="SETDIRECTORY"><parameter>set directory</parameter></link></para></listitem> + <listitem><para><link linkend="SHAREMODES"><parameter>share modes</parameter></link></para></listitem> <listitem><para><link linkend="SHORTPRESERVECASE"><parameter>short preserve case</parameter></link></para></listitem> <listitem><para><link linkend="STATUS"><parameter>status</parameter></link></para></listitem> <listitem><para><link linkend="STRICTALLOCATE"><parameter>strict allocate</parameter></link></para></listitem> @@ -6711,6 +6712,33 @@ + <varlistentry> + <term><anchor id="SHAREMODES">share modes (S)</term> + <listitem><para>This enables or disables the honoring of + the <parameter>share modes</parameter> during a file open. These + modes are used by clients to gain exclusive read or write access + to a file.</para> + + <para>These open modes are not directly supported by UNIX, so + they are simulated using shared memory, or lock files if your + UNIX doesn't support shared memory (almost all do).</para> + + <para>The share modes that are enabled by this option are + <constant>DENY_DOS</constant>, <constant>DENY_ALL</constant>, + <constant>DENY_READ</constant>, <constant>DENY_WRITE</constant>, + <constant>DENY_NONE</constant> and <constant>DENY_FCB</constant>. + </para> + + <para>This option gives full share compatibility and enabled + by default.</para> + + <para>You should <emphasis>NEVER</emphasis> turn this parameter + off as many Windows applications will break if you do so.</para> + + <para>Default: <command>share modes = yes</command></para> + </listitem> + </varlistentry> + <varlistentry> |