summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2002-11-14 21:18:22 +0000
committerJelmer Vernooij <jelmer@samba.org>2002-11-14 21:18:22 +0000
commit77f45f5e530600d01f57a7fedbaa272ecd2f8c65 (patch)
treeb2dfad199abe0edf4b41a9366dc4138d1c231899 /docs
parentb75212077de08670a449d1f2192aded400559c6e (diff)
downloadsamba-77f45f5e530600d01f57a7fedbaa272ecd2f8c65.tar.gz
samba-77f45f5e530600d01f57a7fedbaa272ecd2f8c65.tar.bz2
samba-77f45f5e530600d01f57a7fedbaa272ecd2f8c65.zip
Add more info about stackable VFS objects
(This used to be commit 2dcb295d8eceea7e92e7e8f2e2ffc3583db833fd)
Diffstat (limited to 'docs')
-rw-r--r--docs/docbook/projdoc/VFS.sgml15
1 files changed, 10 insertions, 5 deletions
diff --git a/docs/docbook/projdoc/VFS.sgml b/docs/docbook/projdoc/VFS.sgml
index 4c228dfa87..66b9be1dbd 100644
--- a/docs/docbook/projdoc/VFS.sgml
+++ b/docs/docbook/projdoc/VFS.sgml
@@ -11,7 +11,7 @@
<title>Introduction and configuration</title>
<para>
-Since samba 3.0, samba supports stackable VFS(Virtual File System) modules.
+Since samba 3.0, samba supports stackable VFS(Virtual File System) modules.
Samba passes each request to access the unix file system thru the loaded VFS modules.
This chapter covers all the modules that come with the samba source and references to
some external modules.
@@ -20,27 +20,32 @@ some external modules.
<para>
You may have problems to compile these modules, as shared libraries are
compiled and linked in different ways on different systems.
-I currently tested them against GNU/linux and IRIX.
+They currently have been tested against GNU/linux and IRIX.
</para>
<para>
To use the VFS modules, create a share similar to the one below. The
important parameter is the <command>vfs object</command> parameter which must point to
-the exact pathname of the shared library object. For example, to use audit.so:
+the exact pathname of the shared library objects. For example, to log all access
+to files and use a recycle bin:
<programlisting>
[audit]
comment = Audited /data directory
path = /data
- vfs object = /path/to/audit.so
+ vfs object = /path/to/audit.so /path/to/recycle.so
writeable = yes
browseable = yes
</programlisting>
</para>
<para>
+The modules are used in the order they are specified.
+</para>
+
+<para>
Further documentation on writing VFS modules for Samba can be found in
-docs directory of the Samba source distribution.
+the Samba Developers Guide.
</para>
</sect1>