Changeset 232 for branches/samba-3.2.x/docs-xml
- Timestamp:
- May 27, 2009, 9:09:42 AM (16 years ago)
- Location:
- branches/samba-3.2.x/docs-xml
- Files:
-
- 22 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.2.x/docs-xml/Makefile
r203 r232 51 51 52 52 # Pseudo targets 53 all: $(TARGETS)54 everything: manpages3 pdf html-single html htmlman3 txt ps fo htmlhelp pearson55 release: manpages3 htmlman3 html pdf56 clean: 53 all:: $(TARGETS) 54 everything:: manpages3 pdf html-single html htmlman3 txt ps fo htmlhelp pearson 55 release:: manpages3 htmlman3 html pdf 56 clean:: 57 57 @echo "Cleaning up..." 58 58 rm -rf $(OUTPUTDIR)/* $(DOCBOOKDIR) 59 59 rm -f $(patsubst %.svg,%.png,$(foreach DOC,$(MAIN_DOCS),$($(DOC)-images-latex-dia))) \ 60 60 $(patsubst %.svg,%.pdf,$(foreach DOC,$(MAIN_DOCS),$($(DOC)-images-latex-svg))) \ 61 $(patsubst %.svg,%.eps,$(foreach DOC,$(MAIN_DOCS),$($(DOC)-images-latex-svg))) 61 $(patsubst %.svg,%.eps,$(foreach DOC,$(MAIN_DOCS),$($(DOC)-images-latex-svg))) \ 62 $(patsubst %.svg,%.png,$(foreach DOC,$(MAIN_DOCS),$($(DOC)-images-latex-svg))) 62 63 rm -f *-attributions.xml *.d *.tpt *.tex *.loc *.toc *.lof *.glo *.idx *.aux 63 64 rm -f *-images-html* 64 rm -f *-images-latex-* latexfigures65 rm -f *-images-latex-* $(LATEX_FIGURES) 65 66 rm -f xslt/figures/*pdf 66 67 rm -f $(SMBDOTCONFDOC)/parameters.*.xml 67 68 rm -f $(addsuffix .*,$(MAIN_DOCS)) 69 rm -f build/catalog.xml 68 70 69 71 # Output format targets 70 pdf: $(patsubst %,$(PDFDIR)/%.pdf,$(MAIN_DOCS)) 71 dvi: $(patsubst %,$(DVIDIR)/%.dvi,$(MAIN_DOCS)) 72 ps: $(patsubst %,$(PSDIR)/%.ps,$(MAIN_DOCS)) 73 txt: $(patsubst %,$(TXTDIR)/%.txt,$(MAIN_DOCS)) 74 txt-chunks: $(addsuffix -txt-chunks,$(MAIN_DOCS)) 75 fo: $(patsubst %,$(FODIR)/%.fo,$(MAIN_DOCS)) 76 fo-pdf: $(patsubst %,$(FOPDFDIR)/%.pdf,$(MAIN_DOCS)) 77 tex: $(addsuffix .tex,$(MAIN_DOCS)) 78 texi: $(patsubst %,$(TEXINFODIR)/%.texi,$(MAIN_DOCS)) 79 texiinfo: $(patsubst %,$(TEXINFODIR)/%.info,$(MAIN_DOCS)) 80 manpages3: $(patsubst $(MANPAGEDIR3)/%.xml,$(OUTPUTDIR)/manpages-3/%,$(MANPAGES3)) 81 pearson: $(PEARSONDIR)/Samba3-HOWTO.xml 82 pearson-verify: $(PEARSONDIR)/Samba3-HOWTO.report.html 83 plucker: $(patsubst %,$(PLUCKERDIR)/%.pdb,$(MAIN_DOCS)) 84 htmlman3: $(patsubst $(MANPAGEDIR3)/%.xml,$(HTMLDIR)/manpages-3/%.html,$(MANPAGES3)) $(HTMLDIR)/manpages-3/index.html 85 html-single: $(patsubst %,$(HTMLDIR)/%.html,$(MAIN_DOCS)) 86 html: $(patsubst %,$(HTMLDIR)/%/index.html,$(MAIN_DOCS)) $(HTMLDIR)/index.html 87 htmlhelp: $(addprefix $(HTMLHELPDIR)/,$(MAIN_DOCS)) 88 validate: $(addsuffix -validate,$(MAIN_DOCS)) 72 pdf:: $(patsubst %,$(PDFDIR)/%.pdf,$(MAIN_DOCS)) 73 dvi:: $(patsubst %,$(DVIDIR)/%.dvi,$(MAIN_DOCS)) 74 ps:: $(patsubst %,$(PSDIR)/%.ps,$(MAIN_DOCS)) 75 txt:: $(patsubst %,$(TXTDIR)/%.txt,$(MAIN_DOCS)) 76 txt-chunks:: $(addsuffix -txt-chunks,$(MAIN_DOCS)) 77 fo:: $(patsubst %,$(FODIR)/%.fo,$(MAIN_DOCS)) 78 fo-pdf:: $(patsubst %,$(FOPDFDIR)/%.pdf,$(MAIN_DOCS)) 79 tex:: $(addsuffix .tex,$(MAIN_DOCS)) 80 texi:: $(patsubst %,$(TEXINFODIR)/%.texi,$(MAIN_DOCS)) 81 texiinfo:: $(patsubst %,$(TEXINFODIR)/%.info,$(MAIN_DOCS)) 82 manpages3:: $(patsubst $(MANPAGEDIR3)/%.xml,$(OUTPUTDIR)/manpages-3/%,$(MANPAGES3)) 83 pearson:: $(PEARSONDIR)/Samba3-HOWTO.xml 84 pearson-verify:: $(PEARSONDIR)/Samba3-HOWTO.report.html 85 plucker:: $(patsubst %,$(PLUCKERDIR)/%.pdb,$(MAIN_DOCS)) 86 htmlman3:: $(patsubst $(MANPAGEDIR3)/%.xml,$(HTMLDIR)/manpages-3/%.html,$(MANPAGES3)) $(HTMLDIR)/manpages-3/index.html 87 html-single:: $(patsubst %,$(HTMLDIR)/%.html,$(MAIN_DOCS)) 88 html:: $(patsubst %,$(HTMLDIR)/%/index.html,$(MAIN_DOCS)) $(HTMLDIR)/index.html 89 htmlhelp:: $(addprefix $(HTMLHELPDIR)/,$(MAIN_DOCS)) 90 validate:: $(addsuffix -validate,$(MAIN_DOCS)) 91 92 test:: validate 93 check:: validate 94 95 .PHONY: test check validate 89 96 90 97 # Intermediate docbook docs … … 93 100 @echo "Converting Samba-specific tags for $*..." 94 101 @mkdir -p $(@D) 95 $(XSLTPROC) --stringparam latex.imagebasedir "$*/" --stringparam noreference 0 --xinclude --output $@ xslt/expand-sambadoc.xsl $<102 @$(XSLTPROC) --stringparam latex.imagebasedir "$*/" --stringparam noreference 0 --xinclude --output $@ xslt/expand-sambadoc.xsl $< 96 103 97 104 $(DOCBOOKDIR)/manpages-3/%.xml: $(MANPAGEDIR3)/%.xml xslt/expand-sambadoc.xsl … … 106 113 107 114 # HTML docs 108 109 115 $(HTMLDIR)/index.html: htmldocs.html 110 116 @mkdir -p $(@D) … … 129 135 @echo "Generating attributions file $@ from $*/" 130 136 @cp -f templates/attributions.xml $@ 131 $(XSLTPROC) --xinclude -o $@ xslt/generate-attributions.xsl $*/index.xml137 @$(XSLTPROC) --xinclude -o $@ xslt/generate-attributions.xsl $*/index.xml 132 138 133 139 # Text files … … 140 146 @echo "Generating $@..." 141 147 @mkdir -p $(@D) 142 $(XSLTPROC) $(DB2LATEX_ARGS) --stringparam latex.imagebasedir "$*/" --xinclude --output $@ xslt/latex.xsl $< 143 144 latexfigures: $(LATEX_FIGURES) 148 @$(XSLTPROC) $(DB2LATEX_ARGS) --stringparam latex.imagebasedir "$*/" --xinclude --output $@ xslt/latex.xsl $< 145 149 146 150 $(PDFDIR)/%.pdf: %.pdf … … 148 152 cp $< $@ 149 153 150 %.idx: %.tex latexfigures154 %.idx: %.tex $(LATEX_FIGURES) 151 155 -$(PDFLATEX) $< 152 156 … … 157 161 %.d: $(DOCBOOKDIR)/%.xml xslt/generate-dependencies.xsl 158 162 @echo "Generating dependency file for $*" 159 $(XSLTPROC) \ 160 --novalid \ 163 @$(XSLTPROC) --novalid \ 161 164 --stringparam txtbasedir "$(TXTDIR)/$*/" \ 162 165 --stringparam target "$*" \ … … 191 194 192 195 # Adobe PDF files 193 %.pdf: %.tex %.ind latexfigures%-images-latex-png %-images-latex-pdf196 %.pdf: %.tex %.ind $(LATEX_FIGURES) %-images-latex-png %-images-latex-pdf 194 197 -$(PDFLATEX) $< 195 198 -$(PDFLATEX) $< … … 319 322 xslt/pearson.xsl: 320 323 321 distclean clobber: clean 322 rm Makefile.settings config.status config.log configure 324 distclean clobber:: clean 325 rm -f Makefile.settings config.status config.log 326 327 realdistclean:: distclean 328 rm -f configure 323 329 rm -rf autom4te.cache 324 330 … … 326 332 # Always keep intermediate files if we can 327 333 .SECONDARY: 328 .PHONY: clean clobber archive release everything all $(TARGETS) latexfigures329 334 .PHONY: clean clobber archive release everything all 335 -
branches/samba-3.2.x/docs-xml/Samba3-ByExample/SBE-DomainAppsSupport.xml
r203 r232 478 478 &rootprompt; smbd -D 479 479 &rootprompt; nmbd -D 480 &rootprompt; winbindd - B480 &rootprompt; winbindd -D 481 481 </screen> 482 482 </para></step> -
branches/samba-3.2.x/docs-xml/Samba3-ByExample/SBE-SecureOfficeServer.xml
r203 r232 1911 1911 1912 1912 $rootprompt; ps ax | grep winbind 1913 14293 ? S 0:00 /usr/sbin/winbindd - B1914 14295 ? S 0:00 /usr/sbin/winbindd - B1913 14293 ? S 0:00 /usr/sbin/winbindd -D 1914 14295 ? S 0:00 /usr/sbin/winbindd -D 1915 1915 </screen> 1916 1916 The <command>winbindd</command> daemon is running in split mode (normal), so there are also -
branches/samba-3.2.x/docs-xml/Samba3-ByExample/SBE-TheSmallOffice.xml
r203 r232 768 768 769 769 $rootprompt; ps ax | grep winbind 770 14293 ? S 0:00 /usr/sbin/winbindd - B771 14295 ? S 0:00 /usr/sbin/winbindd - B770 14293 ? S 0:00 /usr/sbin/winbindd -D 771 14295 ? S 0:00 /usr/sbin/winbindd -D 772 772 </screen> 773 773 The <command>winbindd</command> daemon is running in split mode (normal), so there are also -
branches/samba-3.2.x/docs-xml/Samba3-HOWTO/TOSHARG-Compiling.xml
r203 r232 493 493 <para><programlisting> 494 494 #!/bin/sh 495 /usr/local/samba/sbin/smbd -D 496 /usr/local/samba/sbin/winbindd - B497 /usr/local/samba/sbin/nmbd -D 495 /usr/local/samba/sbin/smbd -D 496 /usr/local/samba/sbin/winbindd -D 497 /usr/local/samba/sbin/nmbd -D 498 498 </programlisting></para> 499 499 -
branches/samba-3.2.x/docs-xml/Samba3-HOWTO/TOSHARG-TheNetCommand.xml
r203 r232 1851 1851 The IDMAP dump file can be restored using the following command: 1852 1852 <screen> 1853 net idmap restore <full_path_and_tdb_filename> < dumpfile.txt1853 net idmap restore idmap_dump.txt 1854 1854 </screen> 1855 1855 Where the Samba run-time tdb files are stored in the <filename>/var/lib/samba</filename> directory -
branches/samba-3.2.x/docs-xml/Samba3-HOWTO/TOSHARG-Winbind.xml
r203 r232 1017 1017 1018 1018 <programlisting> 1019 daemon /usr/local/samba/sbin/winbindd - B1019 daemon /usr/local/samba/sbin/winbindd -D 1020 1020 </programlisting>. 1021 1021 </para> … … 1126 1126 in the script above with: 1127 1127 <programlisting> 1128 /usr/local/samba/sbin/winbindd - B1128 /usr/local/samba/sbin/winbindd -D 1129 1129 </programlisting> 1130 1130 </para> -
branches/samba-3.2.x/docs-xml/htmldocs.html
r203 r232 24 24 </tr> 25 25 <tr> 26 <td valign="top"><a href=" ../using_samba/toc.html">Using Samba</a>, 2nd Edition</td>26 <td valign="top"><a href="using_samba/toc.html">Using Samba</a>, 2nd Edition</td> 27 27 <td valign="top"><i>Using Samba</i>, Second Edition is a comprehensive guide to Samba administration. It covers all versions of Samba from 2.0 to 2.2, including selected features from an alpha version of 3.0, as well as the SWAT graphical configuration tool. Updated for Windows 2000, ME, and XP, the book also explores Samba's new role as a primary domain controller and domain member server, its support for the use of Windows NT/2000/XP authentication and filesystem security on the host Unix system, and accessing shared files and printers from Unix clients.</td> 28 28 </tr> 29 29 <tr> 30 <td valign="top"><a href="manpages -3/index.html">Man pages</a></td>30 <td valign="top"><a href="manpages/index.html">Man pages</a></td> 31 31 <td valign="top">The Samba man pages in HTML.</td> 32 32 </tr> … … 35 35 <td valign="top">Samba Release Notes.</td> 36 36 </tr> 37 <tr>38 <td valign="top"><a href="../../README.VENDOR">README.VENDOR</a></td>39 <td valign="top">VENDOR specific information.</td>40 </tr>41 37 </table></body></html> -
branches/samba-3.2.x/docs-xml/manpages-3/eventlogadm.8.xml
r203 r232 92 92 <listitem><para> 93 93 The <command>-o write</command> reads event log 94 records from standard input and writes them to the Samba94 records from standard input and writes them to the Samba 95 95 event log store named by EVENTLOG. 96 96 </para> </listitem> … … 181 181 182 182 <listitem><para> 183 <command>SRN</command> - he name of the machine on183 <command>SRN</command> - The name of the machine on 184 184 which the eventlog was generated. This is typically the 185 185 host name. -
branches/samba-3.2.x/docs-xml/manpages-3/idmap_ad.8.xml
r203 r232 24 24 API, and is READONLY. Mappings must be provided in advance 25 25 by the administrator by adding the posixAccount/posixGroup 26 classes s and relative attribute/value pairs to the usersand27 group s objects in AD</para>26 classes and relative attribute/value pairs to the user and 27 group objects in the AD.</para> 28 28 </refsynopsisdiv> 29 29 … … 35 35 <term>range = low - high</term> 36 36 <listitem><para> 37 Defines the available matching uid and gidrange for which the37 Defines the available matching UID and GID range for which the 38 38 backend is authoritative. Note that the range acts as a filter. 39 39 If specified any UID or GID stored in AD that fall outside the … … 48 48 Defines the schema that idmap_ad should use when querying 49 49 Active Directory regarding user and group information. 50 This can either the RFC2307 schema support included50 This can be either the RFC2307 schema support included 51 51 in Windows 2003 R2 or the Service for Unix (SFU) schema. 52 52 </para></listitem> -
branches/samba-3.2.x/docs-xml/manpages-3/libsmbclient.7.xml
r203 r232 19 19 <refsynopsisdiv> 20 20 <cmdsynopsis> 21 <command>Browser URL:</command>22 21 <para> 23 smb://[[[domain:]user[:password@]]server[/share[/path[/file]]]] [?options] 24 </para> 22 Browser URL: 23 <command moreinfo="none">smb://[[[domain:]user[:password@]]server[/share[/path[/file]]]] [?options] 24 </command> 25 </para> 25 26 </cmdsynopsis> 26 27 </refsynopsisdiv> -
branches/samba-3.2.x/docs-xml/manpages-3/mount.cifs.8.xml
r203 r232 44 44 45 45 <para> 46 The mount.cifs utility attaches the UNC name (exported network resource) to 47 the local directory <emphasis>mount-point</emphasis>. It is possible to set the mode for mount.cifs to 48 setuid root to allow non-root users to mount shares to directories for which they 49 have write permission. 46 The mount.cifs utility attaches the UNC name (exported network resource) 47 specified as <emphasis>service</emphasis> (using //server/share syntax, 48 where "server" is the server name or IP address and "share" is the name 49 of the share) to the local directory <emphasis>mount-point</emphasis>. 50 It is possible to set the mode for mount.cifs to setuid root to allow 51 non-root users to mount shares to directories for which they 52 have write permission. 50 53 </para> 51 54 … … 90 93 <listitem><para>specifies the CIFS password. If this 91 94 option is not given then the environment variable 92 <emphasis>PASSWD</emphasis> is used. If the password is not specified 95 <emphasis>PASSWD</emphasis> is used. If the password is not specified 93 96 directly or indirectly via an argument to mount, <emphasis>mount.cifs</emphasis> will prompt 94 97 for a password, unless the guest option is specified. … … 107 110 <listitem><para> 108 111 specifies a file that contains a username 109 and/or password. The format of the file is: 112 and/or password and optionally the name of the 113 workgroup. The format of the file is: 110 114 </para> 111 115 … … 113 117 username=<replaceable>value</replaceable> 114 118 password=<replaceable>value</replaceable> 119 workgroup=<replaceable>value</replaceable> 115 120 </programlisting> 116 121 117 122 <para> 118 123 This is preferred over having passwords in plaintext in a -
branches/samba-3.2.x/docs-xml/manpages-3/smbclient.1.xml
r203 r232 14 14 <refnamediv> 15 15 <refname>smbclient</refname> 16 <refpurpose>ftp-like client to access SMB/CIFS resources 16 <refpurpose>ftp-like client to access SMB/CIFS resources 17 17 on servers</refpurpose> 18 18 </refnamediv> … … 31 31 <arg choice="opt">-A authfile</arg> 32 32 <arg choice="opt">-N</arg> 33 <arg choice="opt">-g</arg> 33 34 <arg choice="opt">-i scope</arg> 34 35 <arg choice="opt">-O <socket options></arg> … … 40 41 <arg choice="opt">-c <command></arg> 41 42 </cmdsynopsis> 42 43 43 44 <cmdsynopsis> 44 45 <command>smbclient</command> … … 55 56 <arg choice="opt">-A authfile</arg> 56 57 <arg choice="opt">-N</arg> 58 <arg choice="opt">-g</arg> 57 59 <arg choice="opt">-l log-basename</arg> 58 60 <arg choice="opt">-I destinationIP</arg> … … 234 236 messages. </para></listitem> 235 237 </varlistentry> 236 238 237 239 <varlistentry> 238 240 <term>-p port</term> … … 242 244 default. </para></listitem> 243 245 </varlistentry> 244 246 247 <varlistentry> 248 <term>-g</term> 249 <listitem><para>This parameter provides combined with 250 <parameter>-L</parameter> easy parseable output that allows processing 251 with utilities such as grep and cut. 252 </para></listitem> 253 </varlistentry> 254 245 255 <varlistentry> 246 256 <term>-P</term> … … 249 259 </para></listitem> 250 260 </varlistentry> 251 261 252 262 &stdarg.help; 253 263 254 264 <varlistentry> 255 265 <term>-I IP-address</term> 256 <listitem><para><replaceable>IP address</replaceable> is the address of the server to connect to. 266 <listitem><para><replaceable>IP address</replaceable> is the address of the server to connect to. 257 267 It should be specified in standard "a.b.c.d" notation. </para> 258 268 -
branches/samba-3.2.x/docs-xml/manpages-3/vfs_recycle.8.xml
r203 r232 186 186 <title>EXAMPLES</title> 187 187 188 <para>Log operations on all shares using the LOCAL1 facility 189 and NOTICE priority:</para> 188 <para>Move files "deleted" on <parameter>share</parameter> to 189 <parameter>/data/share/.recycle</parameter> instead of deleting them: 190 </para> 190 191 191 192 <programlisting> 192 <smbconfsection name="[global]"/> 193 <smbconfsection name="[share]"/> 194 <smbconfoption name="path">/data/share</smbconfoption> 193 195 <smbconfoption name="vfs objects">recycle</smbconfoption> 194 <smbconfoption name="recycle:facility">LOCAL1</smbconfoption> 195 <smbconfoption name="recycle:priority">NOTICE</smbconfoption> 196 <smbconfoption name="recycle:repository">.recycle</smbconfoption> 197 <smbconfoption name="recycle:keeptree">yes</smbconfoption> 198 <smbconfoption name="recycle:versions">yes</smbconfoption> 196 199 </programlisting> 197 200 -
branches/samba-3.2.x/docs-xml/smbdotconf/ldap/ldapssl.xml
r203 r232 4 4 advanced="1" developer="1" 5 5 xmlns:samba="http://www.samba.org/samba/DTD/samba-doc"> 6 6 <description> 7 7 <para>This option is used to define whether or not Samba should 8 8 use SSL when connecting to the ldap server 9 9 This is <emphasis>NOT</emphasis> related to 10 Samba's previous SSL support which was enabled by specifying the 11 <command moreinfo="none">--with-ssl</command> option to the <filename moreinfo="none">configure</filename> 10 Samba's previous SSL support which was enabled by specifying the 11 <command moreinfo="none">--with-ssl</command> option to the 12 <filename moreinfo="none">configure</filename> 12 13 script.</para> 13 14 <para>The <smbconfoption name="ldap ssl"/> can be set to one of three values:</para> 14 15 <para>LDAP connections should be secured where possible. This may be 16 done setting either this parameter to 17 <parameter moreinfo="none">Start_tls</parameter> 18 or by specifying <parameter moreinfo="none">ldaps://</parameter> in 19 the URL argument of <smbconfoption name="passdb backend"/>.</para> 20 21 <para>The <smbconfoption name="ldap ssl"/> can be set to one of 22 two values:</para> 15 23 <itemizedlist> 16 24 <listitem> 17 <para><parameter moreinfo="none">Off</parameter> = Never 25 <para><parameter moreinfo="none">Off</parameter> = Never 18 26 use SSL when querying the directory.</para> 19 27 </listitem> 20 28 21 29 <listitem> 22 <para><parameter moreinfo="none">Start_tls</parameter> = Use 23 the LDAPv3 StartTLS extended operation (RFC2830) for 30 <para><parameter moreinfo="none">Start_tls</parameter> = Use 31 the LDAPv3 StartTLS extended operation (RFC2830) for 24 32 communicating with the directory server.</para> 25 33 </listitem> 26 27 <listitem> 28 <para><parameter moreinfo="none">On</parameter> = Use SSL 29 on the ldaps port when contacting the <parameter 30 moreinfo="none">ldap server</parameter>. Only available when the 31 backwards-compatiblity <command 32 moreinfo="none">--with-ldapsam</command> option is specified 33 to configure. See <smbconfoption name="passdb backend"/></para>. 34 </listitem> 35 </itemizedlist> 34 </itemizedlist> 36 35 </description> 37 <value type="default"> start_tls</value>36 <value type="default">no</value> 38 37 </samba:parameter> -
branches/samba-3.2.x/docs-xml/smbdotconf/ldap/ldaptimeout.xml
r203 r232 6 6 <description> 7 7 <para> 8 When Samba connects to an ldap server that server may be down or unreachable. To prevent Samba from hanging whilst 9 waiting for the connection this parameter specifies in seconds how long Samba should wait before failing the 10 connect. The default is to only wait fifteen seconds for the ldap server to respond to the connect request. 8 This parameter defines the number of seconds that Samba should use as timeout for LDAP operations. 11 9 </para> 12 10 </description> -
branches/samba-3.2.x/docs-xml/smbdotconf/misc/addsharecommand.xml
r203 r232 8 8 Samba 2.2.0 introduced the ability to dynamically add and delete shares via the Windows NT 4.0 Server 9 9 Manager. The <parameter moreinfo="none">add share command</parameter> is used to define an external program 10 or script which will add a new service definition to <filename moreinfo="none">smb.conf</filename>. In order 11 to successfully execute the <parameter moreinfo="none">add share command</parameter>, <command 12 moreinfo="none">smbd</command> requires that the administrator be connected using a root account (i.e. uid == 0). 10 or script which will add a new service definition to 11 <filename moreinfo="none">smb.conf</filename>. 13 12 </para> 14 13 15 <para> 16 If the connected account has <literal>SeDiskOperatorPrivilege</literal>, scripts defined in 17 <parameter moreinfo="none">change share</parameter> parameter are executed as root. 18 </para> 14 <para> 15 In order to successfully execute the 16 <parameter moreinfo="none">add share command</parameter>, 17 <command moreinfo="none">smbd</command> requires that the administrator 18 connects using a root account (i.e. uid == 0) or has the 19 <literal>SeDiskOperatorPrivilege</literal>. 20 Scripts defined in the <parameter moreinfo="none">add share command</parameter> 21 parameter are executed as root. 22 </para> 19 23 20 24 <para> … … 57 61 58 62 <para> 59 This parameter is only used for add file shares.To add printer shares, see the <smbconfoption63 This parameter is only used to add file shares. To add printer shares, see the <smbconfoption 60 64 name="addprinter command"/>. 61 65 </para> -
branches/samba-3.2.x/docs-xml/smbdotconf/misc/changesharecommand.xml
r203 r232 9 9 Manager. The <parameter moreinfo="none">change share command</parameter> is used to define an external 10 10 program or script which will modify an existing service definition in <filename 11 moreinfo="none">smb.conf</filename>. In order to successfully execute the <parameter moreinfo="none">change 12 share command</parameter>, <command moreinfo="none">smbd</command> requires that the administrator be 13 connected using a root account (i.e. uid == 0). 11 moreinfo="none">smb.conf</filename>. 14 12 </para> 15 13 16 14 <para> 17 If the connected account has <literal>SeDiskOperatorPrivilege</literal>, scripts defined in 18 <parameter moreinfo="none">change share</parameter> parameter are executed as root. 15 In order to successfully execute the 16 <parameter moreinfo="none">change share command</parameter>, 17 <command moreinfo="none">smbd</command> requires that the administrator 18 connects using a root account (i.e. uid == 0) or has the 19 <literal>SeDiskOperatorPrivilege</literal>. 20 Scripts defined in the <parameter moreinfo="none">change share command</parameter> 21 parameter are executed as root. 19 22 </para> 20 23 … … 59 62 60 63 <para> 61 This parameter is only used modify existing file shares definitions. To modify 62 printer shares, use the "Printers..." folder as seen when browsing the Samba host. 64 This parameter is only used to modify existing file share definitions. 65 To modify printer shares, use the "Printers..." folder as seen 66 when browsing the Samba host. 63 67 </para> 64 68 </description> … … 67 71 <related>delete share command</related> 68 72 <value type="default"></value> 69 <value type="example">/usr/local/bin/ addshare</value>73 <value type="example">/usr/local/bin/changeshare</value> 70 74 </samba:parameter> -
branches/samba-3.2.x/docs-xml/smbdotconf/misc/deletesharecommand.xml
r203 r232 9 9 Manager. The <parameter moreinfo="none">delete share command</parameter> is used to define an external 10 10 program or script which will remove an existing service definition from 11 <filename moreinfo="none">smb.conf</filename>. In order to successfully execute the 12 <parameter moreinfo="none">delete share command</parameter>, <command moreinfo="none">smbd</command> 13 requires that the administrator be connected using a root account (i.e. uid == 0). 11 <filename moreinfo="none">smb.conf</filename>. 14 12 </para> 15 13 16 <para> 17 If the connected account has <literal>SeDiskOperatorPrivilege</literal>, scripts defined in 18 <parameter moreinfo="none">change share</parameter> parameter are executed as root. 19 </para> 14 <para>In order to successfully execute the 15 <parameter moreinfo="none">delete share command</parameter>, 16 <command moreinfo="none">smbd</command> requires that the administrator 17 connects using a root account (i.e. uid == 0) or has the 18 <literal>SeDiskOperatorPrivilege</literal>. 19 Scripts defined in the <parameter moreinfo="none">delete share command</parameter> 20 parameter are executed as root. 21 </para> 20 22 21 23 <para> … … 45 47 46 48 <related>add share command</related> 47 <related> delete share command</related>49 <related>change share command</related> 48 50 <value type="default"></value> 49 51 <value type="example">/usr/local/bin/delshare</value> -
branches/samba-3.2.x/docs-xml/smbdotconf/misc/socketaddress.xml
r203 r232 5 5 xmlns:samba="http://www.samba.org/samba/DTD/samba-doc"> 6 6 <description> 7 <para>This option allows you to control what 8 address Samba will listen for connections on. This is used to 9 support multiple virtual interfaces on the one server, each 7 <para>This option allows you to control what 8 address Samba will listen for connections on. This is used to 9 support multiple virtual interfaces on the one server, each 10 10 with a different configuration.</para> 11 12 <para>By default Samba will accept connections on any 11 <para>Setting this option should never be necessary on usual Samba 12 servers running only one nmbd.</para> 13 14 <para>By default Samba will accept connections on any 13 15 address.</para> 14 16 </description> -
branches/samba-3.2.x/docs-xml/smbdotconf/printing/printing.xml
r203 r232 34 34 [printers]</link> section.</para> 35 35 </description> 36 <value type="default">Depends on the operating system, see 37 <command moreinfo="none">testparm -v.</command></value> 36 38 </samba:parameter> -
branches/samba-3.2.x/docs-xml/smbdotconf/vfs/aclcompatibility.xml
r203 r232 1 1 <samba:parameter name="acl compatibility" 2 context=" S"2 context="G" 3 3 type="enum" 4 4 advanced="1" developer="1"
Note:
See TracChangeset
for help on using the changeset viewer.