From 7216c9a99a76d1d611582e78f5ebb53ae2401613 Mon Sep 17 00:00:00 2001 From: John Terpstra Date: Fri, 9 Sep 2005 06:52:15 +0000 Subject: Fixing typos. (This used to be commit d1e1190c2fb8361938082c5401a7f7a7f839f544) --- docs/Samba3-HOWTO/TOSHARG-VFS.xml | 43 ++++++++++++++++++++++++++++++--------- 1 file changed, 33 insertions(+), 10 deletions(-) (limited to 'docs/Samba3-HOWTO') diff --git a/docs/Samba3-HOWTO/TOSHARG-VFS.xml b/docs/Samba3-HOWTO/TOSHARG-VFS.xml index 575bd98e3b..75566c3107 100644 --- a/docs/Samba3-HOWTO/TOSHARG-VFS.xml +++ b/docs/Samba3-HOWTO/TOSHARG-VFS.xml @@ -138,11 +138,11 @@ shown in the smb.conf with multiple VFS modules - This module takes 2 parametric entries in the &mb.conf; file. The default prefix for each is the + This module takes 2 parametric entries in the &smb.conf; file. The default prefix for each is the default_quota. This can be overwrittem when you load the module in the vfs modules parameter like this: -vfs modules = default_quota:myprefix) +vfs objects = default_quota:myprefix @@ -152,7 +152,7 @@ vfs modules = default_quota:myprefix) - prefix:uid + myprefix:uid This parameter takes a integer argument that specifies the uid of the quota record that will be used for storing the default user quotas. @@ -161,13 +161,21 @@ vfs modules = default_quota:myprefix) The default value is 0 (for root user). An example of use is: -default_quota:uid = 65534 +vfs objects = default_quota +default_quota: uid = 65534 + + The above demonstrates the case where the myprefix was omitted, thus the + default prefix is the name of the module. When a myprefix parameter is + specified the above can be re-written like this: + +vfs objects = default_quota:myprefix +myprefix: uid = 65534 - prefix:uid nolimit + myprefix:uid nolimit This parameter takes a boolean argument that specifies if the stored default quota values also be reported for the user record, or if the value NO_LIMIT should be reported to @@ -178,13 +186,14 @@ default_quota:uid = 65534 The default value is yes (which means to report NO_LIMIT). An example of use is shown here: -default_quota:uid nolimit = no +vfs objects = default_quota:myprefix +myprefix: uid nolimit = no - prefix>:gid + myprefix:gid This parameter takes an integer argument, it's just like the prefix>:uid but for group quotas. NOTE: group quotas are not supported from the windows explorer. @@ -193,13 +202,14 @@ default_quota:uid nolimit = no The default value is 0 (for root group). An example of use is shown here: -default_quota:gid = 65534 +vfs objects = default_quota +default_quota: gid = 65534 - prefix>:gid nolimit + myprefix:gid nolimit This parameter takes a boolean argument, just like the prefix>:uid nolimit but for group quotas. NOTE: group quotas are not supported from the windows explorer. @@ -209,12 +219,25 @@ default_quota:gid = 65534 The default value is yes (which means to report NO_LIMIT). An example of use is shown here: -default_quota:uid nolimit = no +vfs objects = default_quota +default_quota: uid nolimit = no + + An example of use of multiple parametric specifications is shown here: + +... +vfs objects = default_quota:quotasettings +quotasettings: uid nolimit = no +quotasettings: gid = 65534 +quotasettings: gid nolimit = no +... + + + -- cgit