Changeset 988 for vendor/current/docs-xml/smbdotconf/vfs
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- Location:
- vendor/current/docs-xml/smbdotconf/vfs
- Files:
-
- 2 added
- 1 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/docs-xml/smbdotconf/vfs/getquotacommand.xml
r414 r988 2 2 context="G" 3 3 type="string" 4 advanced="1" developer="1"5 4 xmlns:samba="http://www.samba.org/samba/DTD/samba-doc"> 6 5 <description> … … 9 8 samba can use.</para> 10 9 11 <para>This option is only available you have compiled Samba with the 12 <command moreinfo="none">--with-sys-quotas</command> option or on Linux with 13 <command moreinfo="none">--with-quotas</command> and a working quota api 14 was found in the system.</para> 10 <para>This option is only available Samba was compiled with 11 quotas support.</para> 15 12 16 13 <para>This parameter should specify the path to a script that … … 19 16 the specified directory is on.</para> 20 17 21 <para>Such a script should take3 arguments:</para>18 <para>Such a script is being given 3 arguments:</para> 22 19 23 20 <itemizedlist> … … 27 24 </itemizedlist> 28 25 29 <para>The type of query can be one of :</para> 26 <para>The directory is actually mostly just "." - It needs to be 27 treated relatively to the current working directory that the script can 28 also query.</para> 29 30 <para>The type of query can be one of:</para> 30 31 31 32 <itemizedlist> … … 36 37 </itemizedlist> 37 38 38 <para>This script should print one line as output with spaces between the arguments. The arguments are:39 <para>This script should print one line as output with spaces between the columns. The printed columns should be: 39 40 </para> 40 41 41 42 <itemizedlist> 42 <listitem><para> Arg1 - quota flags (0 = no quotas, 1 = quotas enabled, 2 = quotas enabled and enforced)</para></listitem>43 <listitem><para> Arg2 - number of currently used blocks</para></listitem>44 <listitem><para> Arg3 - the softlimit number of blocks</para></listitem>45 <listitem><para> Arg4 - the hardlimit number of blocks</para></listitem>46 <listitem><para> Arg5 - currently used number of inodes</para></listitem>47 <listitem><para> Arg6 - the softlimit number of inodes</para></listitem>48 <listitem><para> Arg7 - the hardlimit number of inodes</para></listitem>49 <listitem><para> Arg 8(optional) - the number of bytes in a block(default is 1024)</para></listitem>43 <listitem><para>1 - quota flags (0 = no quotas, 1 = quotas enabled, 2 = quotas enabled and enforced)</para></listitem> 44 <listitem><para>2 - number of currently used blocks</para></listitem> 45 <listitem><para>3 - the softlimit number of blocks</para></listitem> 46 <listitem><para>4 - the hardlimit number of blocks</para></listitem> 47 <listitem><para>5 - currently used number of inodes</para></listitem> 48 <listitem><para>6 - the softlimit number of inodes</para></listitem> 49 <listitem><para>7 - the hardlimit number of inodes</para></listitem> 50 <listitem><para>8 (optional) - the number of bytes in a block(default is 1024)</para></listitem> 50 51 </itemizedlist> 51 52 </description> -
vendor/current/docs-xml/smbdotconf/vfs/hostmsdfs.xml
r414 r988 2 2 context="G" 3 3 type="boolean" 4 advanced="1" developer="1"5 4 xmlns:samba="http://www.samba.org/samba/DTD/samba-doc"> 6 5 <description> -
vendor/current/docs-xml/smbdotconf/vfs/msdfsproxy.xml
r414 r988 7 7 stand-in for another CIFS share whose location is specified by 8 8 the value of the parameter. When clients attempt to connect to 9 this share, they are redirected to the proxied share using10 the SMB-Dfs protocol.</para>9 this share, they are redirected to one or multiple, comma separated 10 proxied shares using the SMB-Dfs protocol.</para> 11 11 12 12 <para>Only Dfs roots can act as proxy shares. Take a look at the … … 15 15 </description> 16 16 17 <value type="example">\otherserver\someshare </value>17 <value type="example">\otherserver\someshare,\otherserver2\someshare</value> 18 18 </samba:parameter> -
vendor/current/docs-xml/smbdotconf/vfs/msdfsroot.xml
r414 r988 1 1 <samba:parameter name="msdfs root" 2 2 context="S" 3 ty e="boolean"3 type="boolean" 4 4 xmlns:samba="http://www.samba.org/samba/DTD/samba-doc"> 5 5 <description> -
vendor/current/docs-xml/smbdotconf/vfs/setquotacommand.xml
r414 r988 2 2 context="G" 3 3 type="string" 4 advanced="1" developer="1"5 4 xmlns:samba="http://www.samba.org/samba/DTD/samba-doc"> 6 5 <description> … … 9 8 samba can use.</para> 10 9 11 <para>This option is only available if Samba was configured with the argument <command>--with-sys-quotas</command> or 12 on linux when <command>./configure --with-quotas</command> was used and a working quota api 13 was found in the system. Most packages are configured with these options already.</para> 10 <para>This option is only available if Samba was compiled with 11 quota support.</para> 14 12 15 13 <para>This parameter should specify the path to a script that … … 19 17 20 18 <itemizedlist> 21 <listitem><para>1 - quota type 19 <listitem><para>1 - path to where the quota needs to be set. 20 This needs to be interpreted relative to the current working 21 directory that the script may also check for.</para></listitem> 22 <listitem><para>2 - quota type 22 23 <itemizedlist> 23 24 <listitem><para>1 - user quotas</para></listitem> … … 26 27 <listitem><para>4 - group default quotas (gid = -1)</para></listitem> 27 28 </itemizedlist></para></listitem> 28 <listitem><para> 2- id (uid for user, gid for group, -1 if N/A)</para></listitem>29 <listitem><para> 3- quota state (0 = disable, 1 = enable, 2 = enable and enforce)</para></listitem>30 <listitem><para> 4- block softlimit</para></listitem>31 <listitem><para> 5- block hardlimit</para></listitem>32 <listitem><para> 6- inode softlimit</para></listitem>33 <listitem><para> 7- inode hardlimit</para></listitem>34 <listitem><para> 8(optional) - block size, defaults to 1024</para></listitem>29 <listitem><para>3 - id (uid for user, gid for group, -1 if N/A)</para></listitem> 30 <listitem><para>4 - quota state (0 = disable, 1 = enable, 2 = enable and enforce)</para></listitem> 31 <listitem><para>5 - block softlimit</para></listitem> 32 <listitem><para>6 - block hardlimit</para></listitem> 33 <listitem><para>7 - inode softlimit</para></listitem> 34 <listitem><para>8 - inode hardlimit</para></listitem> 35 <listitem><para>9(optional) - block size, defaults to 1024</para></listitem> 35 36 </itemizedlist> 36 37 -
vendor/current/docs-xml/smbdotconf/vfs/vfsobjects.xml
r414 r988 1 1 <samba:parameter name="vfs objects" 2 type="list"2 type="cmdlist" 3 3 context="S" 4 4 xmlns:samba="http://www.samba.org/samba/DTD/samba-doc">
Note:
See TracChangeset
for help on using the changeset viewer.