mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
doc: "prune stale" and "sequence timeout" fssd parameters
This change adds smb.conf documentation for the "fss: prune stale" and "fss: sequence timeout" parameters accepted by Samba's FSRVP server. Signed-off-by: David Disseldorp <ddiss@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
parent
7a38f148ac
commit
9af9b436ed
16
docs-xml/smbdotconf/misc/fssprunestale.xml
Normal file
16
docs-xml/smbdotconf/misc/fssprunestale.xml
Normal file
@ -0,0 +1,16 @@
|
||||
<samba:parameter name="fss: prune stale"
|
||||
context="G"
|
||||
type="boolean"
|
||||
advanced="1"
|
||||
xmlns:samba="http://www.samba.org/samba/DTD/samba-doc">
|
||||
<description>
|
||||
<para>
|
||||
When enabled, Samba's File Server Remove VSS Protocol (FSRVP) server
|
||||
checks all FSRVP initiated snapshots on startup, and removes any
|
||||
corresponding state (including share definitions) for nonexistent
|
||||
snapshot paths.
|
||||
</para>
|
||||
</description>
|
||||
<value type="default">no</value>
|
||||
<value type="example">yes</value>
|
||||
</samba:parameter>
|
16
docs-xml/smbdotconf/misc/fsssequencetimeout.xml
Normal file
16
docs-xml/smbdotconf/misc/fsssequencetimeout.xml
Normal file
@ -0,0 +1,16 @@
|
||||
<samba:parameter name="fss: sequence timeout"
|
||||
context="G"
|
||||
type="integer"
|
||||
advanced="1"
|
||||
xmlns:samba="http://www.samba.org/samba/DTD/samba-doc">
|
||||
<description>
|
||||
<para>
|
||||
The File Server Remove VSS Protocol (FSRVP) server includes a message
|
||||
sequence timer to ensure cleanup on unexpected client disconnect. This
|
||||
parameter overrides the default timeout between FSRVP operations.
|
||||
FSRVP timeouts can be completely disabled via a value of 0.
|
||||
</para>
|
||||
</description>
|
||||
<value type="default">180 or 1800, depending on operation</value>
|
||||
<value type="example">0</value>
|
||||
</samba:parameter>
|
@ -56,13 +56,14 @@
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Samba includes separate daemons for spoolss and the lsarpc/lsass,
|
||||
netlogon and samr pipes. Currently three daemons are available and they
|
||||
are called:
|
||||
Samba includes separate daemons for spoolss, lsarpc/lsass, netlogon,
|
||||
samr, and FSRVP. Currently four daemons are available and they are
|
||||
called:
|
||||
<programlisting>
|
||||
epmd
|
||||
lsasd
|
||||
spoolssd
|
||||
fssd
|
||||
</programlisting>
|
||||
Example:
|
||||
<programlisting>
|
||||
|
@ -131,7 +131,7 @@ class SmbDotConfTests(TestCase):
|
||||
'queuepause command','lpresume command', 'lppause command',
|
||||
'lprm command', 'lpq command', 'print command', 'template homedir',
|
||||
'spoolss: os_major', 'spoolss: os_minor', 'spoolss: os_build',
|
||||
'max open files'])
|
||||
'max open files', 'fss: prune stale', 'fss: sequence timeout'])
|
||||
|
||||
def setUp(self):
|
||||
super(SmbDotConfTests, self).setUp()
|
||||
|
Loading…
Reference in New Issue
Block a user