From 8f8a9f01909ba29e2b781310baeeaaddc3f15f0d Mon Sep 17 00:00:00 2001 From: "Gerald W. Carter" Date: Tue, 22 Apr 2008 10:09:40 -0500 Subject: Moving docs tree to docs-xml to make room for generated docs in the release tarball. (This used to be commit 9f672c26d63955f613088489c6efbdc08b5b2d14) --- docs-xml/smbdotconf/vfs/aclcompatibility.xml | 17 +++++++++ docs-xml/smbdotconf/vfs/getquotacommand.xml | 55 ++++++++++++++++++++++++++++ docs-xml/smbdotconf/vfs/hostmsdfs.xml | 19 ++++++++++ docs-xml/smbdotconf/vfs/msdfsproxy.xml | 18 +++++++++ docs-xml/smbdotconf/vfs/msdfsroot.xml | 18 +++++++++ docs-xml/smbdotconf/vfs/setquotacommand.xml | 44 ++++++++++++++++++++++ docs-xml/smbdotconf/vfs/vfsobjects.xml | 15 ++++++++ 7 files changed, 186 insertions(+) create mode 100644 docs-xml/smbdotconf/vfs/aclcompatibility.xml create mode 100644 docs-xml/smbdotconf/vfs/getquotacommand.xml create mode 100644 docs-xml/smbdotconf/vfs/hostmsdfs.xml create mode 100644 docs-xml/smbdotconf/vfs/msdfsproxy.xml create mode 100644 docs-xml/smbdotconf/vfs/msdfsroot.xml create mode 100644 docs-xml/smbdotconf/vfs/setquotacommand.xml create mode 100644 docs-xml/smbdotconf/vfs/vfsobjects.xml (limited to 'docs-xml/smbdotconf/vfs') diff --git a/docs-xml/smbdotconf/vfs/aclcompatibility.xml b/docs-xml/smbdotconf/vfs/aclcompatibility.xml new file mode 100644 index 0000000000..7891adc13b --- /dev/null +++ b/docs-xml/smbdotconf/vfs/aclcompatibility.xml @@ -0,0 +1,17 @@ + + + This parameter specifies what OS ACL semantics should + be compatible with. Possible values are winnt for Windows NT 4, + win2k for Windows 2000 and above and auto. + If you specify auto, the value for this parameter + will be based upon the version of the client. There should + be no reason to change this parameter from the default. + + +Auto +win2k + diff --git a/docs-xml/smbdotconf/vfs/getquotacommand.xml b/docs-xml/smbdotconf/vfs/getquotacommand.xml new file mode 100644 index 0000000000..809d1a118f --- /dev/null +++ b/docs-xml/smbdotconf/vfs/getquotacommand.xml @@ -0,0 +1,55 @@ + + + The get quota command should only be used + whenever there is no operating system API available from the OS that + samba can use. + + This option is only available with ./configure --with-sys-quotas. + Or on linux when ./configure --with-quotas was used and a working quota api + was found in the system. + + This parameter should specify the path to a script that + queries the quota information for the specified + user/group for the partition that + the specified directory is on. + + Such a script should take 3 arguments: + + + directory + type of query + uid of user or gid of group + + + The type of query can be one of : + + + 1 - user quotas + 2 - user default quotas (uid = -1) + 3 - group quotas + 4 - group default quotas (gid = -1) + + + This script should print one line as output with spaces between the arguments. The arguments are: + + + + Arg 1 - quota flags (0 = no quotas, 1 = quotas enabled, 2 = quotas enabled and enforced) + Arg 2 - number of currently used blocks + Arg 3 - the softlimit number of blocks + Arg 4 - the hardlimit number of blocks + Arg 5 - currently used number of inodes + Arg 6 - the softlimit number of inodes + Arg 7 - the hardlimit number of inodes + Arg 8(optional) - the number of bytes in a block(default is 1024) + + + +set quote command + +/usr/local/sbin/query_quota + diff --git a/docs-xml/smbdotconf/vfs/hostmsdfs.xml b/docs-xml/smbdotconf/vfs/hostmsdfs.xml new file mode 100644 index 0000000000..67f67dce45 --- /dev/null +++ b/docs-xml/smbdotconf/vfs/hostmsdfs.xml @@ -0,0 +1,19 @@ + + + + If set to yes, Samba will act as a Dfs server, and allow Dfs-aware clients to browse + Dfs trees hosted on the server. + + + + See also the share level parameter. For more information on + setting up a Dfs tree on Samba, refer to the MSFDS chapter in the book Samba3-HOWTO. + + + +yes + diff --git a/docs-xml/smbdotconf/vfs/msdfsproxy.xml b/docs-xml/smbdotconf/vfs/msdfsproxy.xml new file mode 100644 index 0000000000..5117bae224 --- /dev/null +++ b/docs-xml/smbdotconf/vfs/msdfsproxy.xml @@ -0,0 +1,18 @@ + + + This parameter indicates that the share is a + stand-in for another CIFS share whose location is specified by + the value of the parameter. When clients attempt to connect to + this share, they are redirected to the proxied share using + the SMB-Dfs protocol. + + Only Dfs roots can act as proxy shares. Take a look at the + and + options to find out how to set up a Dfs root share. + + +\otherserver\someshare + diff --git a/docs-xml/smbdotconf/vfs/msdfsroot.xml b/docs-xml/smbdotconf/vfs/msdfsroot.xml new file mode 100644 index 0000000000..86dc6f1d8c --- /dev/null +++ b/docs-xml/smbdotconf/vfs/msdfsroot.xml @@ -0,0 +1,18 @@ + + + If set to yes, Samba treats the + share as a Dfs root and allows clients to browse the + distributed file system tree rooted at the share directory. + Dfs links are specified in the share directory by symbolic + links of the form msdfs:serverA\\shareA,serverB\\shareB + and so on. For more information on setting up a Dfs tree on + Samba, refer to the MSDFS chapter in the Samba3-HOWTO book. + + +host msdfs +no +See also + diff --git a/docs-xml/smbdotconf/vfs/setquotacommand.xml b/docs-xml/smbdotconf/vfs/setquotacommand.xml new file mode 100644 index 0000000000..b00a620628 --- /dev/null +++ b/docs-xml/smbdotconf/vfs/setquotacommand.xml @@ -0,0 +1,44 @@ + + + The set quota command should only be used + whenever there is no operating system API available from the OS that + samba can use. + + This option is only available if Samba was configured with the argument --with-sys-quotas or + on linux when ./configure --with-quotas was used and a working quota api + was found in the system. Most packages are configured with these options already. + + This parameter should specify the path to a script that + can set quota for the specified arguments. + + The specified script should take the following arguments: + + + 1 - quota type + + 1 - user quotas + 2 - user default quotas (uid = -1) + 3 - group quotas + 4 - group default quotas (gid = -1) + + 2 - id (uid for user, gid for group, -1 if N/A) + 3 - quota state (0 = disable, 1 = enable, 2 = enable and enforce) + 4 - block softlimit + 5 - block hardlimit + 6 - inode softlimit + 7 - inode hardlimit + 8(optional) - block size, defaults to 1024 + + + The script should output at least one line of data on success. And nothing on failure. + + +get quota command + + +/usr/local/sbin/set_quota + diff --git a/docs-xml/smbdotconf/vfs/vfsobjects.xml b/docs-xml/smbdotconf/vfs/vfsobjects.xml new file mode 100644 index 0000000000..09d41c75b0 --- /dev/null +++ b/docs-xml/smbdotconf/vfs/vfsobjects.xml @@ -0,0 +1,15 @@ + +vfs object + + This parameter specifies the backend names which + are used for Samba VFS I/O operations. By default, normal + disk I/O operations are used but these can be overloaded + with one or more VFS objects. + + + +extd_audit recycle + -- cgit