Ignore:
Timestamp:
May 20, 2009, 6:46:53 PM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update 3.2 branch to 3.2.4

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  
    6363<refsect1>
    6464        <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>
    6670
    6771        <variablelist>
  • branches/samba-3.2.x/docs-xml/scripts/find_missing_manpages.pl

    r203 r204  
    11#!/usr/bin/perl
    22
    3 my %doc;
    4 
    53$invar = 0;
    6 
    74$topdir = (shift @ARGV) or $topdir = ".";
    8 
     5$makefile = "$topdir/source/Makefile.in";
     6$mandir = "$topdir/docs-xml/manpages-3";
    97$progs = "";
    108
    11 open(IN, "$topdir/Makefile.in");
     9chdir($topdir);
     10
     11if(! -e "$makefile") {
     12        print "$makefile does not exist!\n";
     13        print "Wrong directory?\n";
     14        exit(1);
     15}
     16
     17if(! -d "$mandir") {
     18        print "$mandir does not exist!\n";
     19        exit(1);
     20}
     21
     22open(IN, "$makefile");
    1223while(<IN>) {
    1324        if($invar && /^([ \t]*)(.*?)([\\])$/) {
     
    2334        next if($_ eq " ");
    2435        s/\@EXEEXT\@//g;
     36        s/\@EXTRA_BIN_PROGS\@//g;
    2537        s/ //g;
    2638
    2739
    2840        $f = $_;
    29        
     41
    3042        $found = 0;
    3143
     44
    3245        for($i = 0; $i < 9; $i++) {
    33                 if(-e "manpages/$f.$i.xml") { $found = 1; }
     46                if(-e "$mandir/$f.$i.xml") { $found = 1; }
    3447        }
    3548
  • branches/samba-3.2.x/docs-xml/smbdotconf/security/forcecreatemode.xml

    r203 r204  
    33                 xmlns:samba="http://www.samba.org/samba/DTD/samba-doc">
    44<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>
    1211    parameter is applied.</para>
    1312
    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
    1615    read/write/execute bits set for the 'user'.</para>
    1716
Note: See TracChangeset for help on using the changeset viewer.