Changeset 204 for branches/samba-3.2.x/docs-xml
- Timestamp:
- May 20, 2009, 6:46:53 PM (16 years ago)
- Location:
- branches/samba-3.2.x/docs-xml
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.2.x/docs-xml/manpages-3/cifs.upcall.8.xml
r203 r204 63 63 <refsect1> 64 64 <title>CONFIGURATION FOR KEYCTL</title> 65 <para>cifs.upcall is designed to be called from the kernel via the request-key callout program. This requres that request-key be told where and how to call this program. The current cifs.upcall program handles two different key types:</para> 65 <para>cifs.upcall is designed to be called from the kernel via the 66 request-key callout program. This requires that request-key be told 67 where and how to call this program. The current cifs.upcall program 68 handles two different key types: 69 </para> 66 70 67 71 <variablelist> -
branches/samba-3.2.x/docs-xml/scripts/find_missing_manpages.pl
r203 r204 1 1 #!/usr/bin/perl 2 2 3 my %doc;4 5 3 $invar = 0; 6 7 4 $topdir = (shift @ARGV) or $topdir = "."; 8 5 $makefile = "$topdir/source/Makefile.in"; 6 $mandir = "$topdir/docs-xml/manpages-3"; 9 7 $progs = ""; 10 8 11 open(IN, "$topdir/Makefile.in"); 9 chdir($topdir); 10 11 if(! -e "$makefile") { 12 print "$makefile does not exist!\n"; 13 print "Wrong directory?\n"; 14 exit(1); 15 } 16 17 if(! -d "$mandir") { 18 print "$mandir does not exist!\n"; 19 exit(1); 20 } 21 22 open(IN, "$makefile"); 12 23 while(<IN>) { 13 24 if($invar && /^([ \t]*)(.*?)([\\])$/) { … … 23 34 next if($_ eq " "); 24 35 s/\@EXEEXT\@//g; 36 s/\@EXTRA_BIN_PROGS\@//g; 25 37 s/ //g; 26 38 27 39 28 40 $f = $_; 29 41 30 42 $found = 0; 31 43 44 32 45 for($i = 0; $i < 9; $i++) { 33 if(-e " manpages/$f.$i.xml") { $found = 1; }46 if(-e "$mandir/$f.$i.xml") { $found = 1; } 34 47 } 35 48 -
branches/samba-3.2.x/docs-xml/smbdotconf/security/forcecreatemode.xml
r203 r204 3 3 xmlns:samba="http://www.samba.org/samba/DTD/samba-doc"> 4 4 <description> 5 <para>This parameter specifies a set of UNIX mode bit 6 permissions that will <emphasis>always</emphasis> be set on a 7 file created by Samba. This is done by bitwise 'OR'ing these bits onto 8 the mode bits of a file that is being created or having its 9 permissions changed. The default for this parameter is (in octal) 10 000. The modes in this parameter are bitwise 'OR'ed onto the file 11 mode after the mask set in the <parameter moreinfo="none">create mask</parameter> 5 <para>This parameter specifies a set of UNIX mode bit 6 permissions that will <emphasis>always</emphasis> be set on a 7 file created by Samba. This is done by bitwise 'OR'ing these bits onto 8 the mode bits of a file that is being created. The default for this parameter is (in octal) 9 000. The modes in this parameter are bitwise 'OR'ed onto the file 10 mode after the mask set in the <parameter moreinfo="none">create mask</parameter> 12 11 parameter is applied.</para> 13 12 14 <para>The example below would force all created files to have read and execute 15 permissions set for 'group' and 'other' as well as the 13 <para>The example below would force all newly created files to have read and execute 14 permissions set for 'group' and 'other' as well as the 16 15 read/write/execute bits set for the 'user'.</para> 17 16
Note:
See TracChangeset
for help on using the changeset viewer.