summaryrefslogtreecommitdiffstats
path: root/examples/VFS/README
diff options
context:
space:
mode:
authorcvs2svn Import User <samba-bugs@samba.org>2000-03-19 08:08:18 +0000
committercvs2svn Import User <samba-bugs@samba.org>2000-03-19 08:08:18 +0000
commitdf33eecde47e550d2773b7720c854ef6bc88c33f (patch)
tree9db4094fe7e1a647f15cdff0961c4c5ddecadb42 /examples/VFS/README
parentb4158702c97d47479bbfd6550d44bdc0cc1ea6ca (diff)
downloadsamba-misc-tags/tng/release-alpha-1-1.tar.gz
samba-misc-tags/tng/release-alpha-1-1.tar.xz
samba-misc-tags/tng/release-alpha-1-1.zip
This commit was manufactured by cvs2svn to create tagsamba-misc-tags/tng/release-alpha-1-1
'release-alpha-1-1'.
Diffstat (limited to 'examples/VFS/README')
-rw-r--r--examples/VFS/README35
1 files changed, 0 insertions, 35 deletions
diff --git a/examples/VFS/README b/examples/VFS/README
deleted file mode 100644
index c2f39f9727d..00000000000
--- a/examples/VFS/README
+++ /dev/null
@@ -1,35 +0,0 @@
-README for Samba Virtual File System (VFS) Examples
-===================================================
-
-This directory contains some sample code to demonstrate VFS
-construction. The following VFS modules are given:
-
- skel
- A skeleton VFS module. When used, this module simply
- passes all requests back to the disk functions (i.e it
- operates as a passthrough filter). It should be
- useful as a starting point for developing new VFS
- modules.
-
- audit
- A simple module to audit file access to the syslog
- facility. The following operations are logged: share
- connect/disconnect, directory opens/create/remove,
- file open/close/rename/unlink/chmod.
-
-The libtool program, available from your favourite GNU software
-archive, is required to compile these programs.
-
-To use the VFS modules, create a share similar to the one below. The
-important parameter is the 'vfs object' parameter which must point to
-the exact pathname of the shared library object.
-
- [audit]
- comment = Audited /data directory
- path = /data
- vfs object = /path/to/audit.so
- writeable = yes
- browseable = yes
-
-Further documentation on writing VFS modules for Samba can be found in
-docs directory of the Samba source distribution.