summaryrefslogtreecommitdiff
path: root/docs/docbook/smbdotconf
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-09-09 03:11:56 +0000
committerGerald Carter <jerry@samba.org>2003-09-09 03:11:56 +0000
commitb968848a1697dfc7216e1802883b5f7e55025111 (patch)
tree05d30dcd1daed7575cba09aa7308747b50ad66f8 /docs/docbook/smbdotconf
parent99bde6889d3d8b7a9e950c86c30e82662e1dacdd (diff)
downloadsamba-b968848a1697dfc7216e1802883b5f7e55025111.tar.gz
samba-b968848a1697dfc7216e1802883b5f7e55025111.tar.bz2
samba-b968848a1697dfc7216e1802883b5f7e55025111.zip
removing files not in 3.0
(This used to be commit d5c32f8881f33667c9bfa067cb7f2113bd55c724)
Diffstat (limited to 'docs/docbook/smbdotconf')
-rw-r--r--docs/docbook/smbdotconf/base/adsserver.xml15
-rw-r--r--docs/docbook/smbdotconf/expand-smb.conf.xsl87
-rw-r--r--docs/docbook/smbdotconf/ldap/ldaptrustids.xml23
-rw-r--r--docs/docbook/smbdotconf/printing/totalprintjobs.xml22
-rw-r--r--docs/docbook/smbdotconf/security/nonunixaccountrange.xml25
-rw-r--r--docs/docbook/smbdotconf/smb.conf.5.xml14
-rw-r--r--docs/docbook/smbdotconf/tuning/statcachesize.xml12
-rw-r--r--docs/docbook/smbdotconf/vfs/vfsoptions.xml12
-rw-r--r--docs/docbook/smbdotconf/vfs/vfspath.xml13
9 files changed, 6 insertions, 217 deletions
diff --git a/docs/docbook/smbdotconf/base/adsserver.xml b/docs/docbook/smbdotconf/base/adsserver.xml
deleted file mode 100644
index 4dd2a4b635..0000000000
--- a/docs/docbook/smbdotconf/base/adsserver.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<samba:parameter name="ads server"
- context="G"
- basic="1" advanced="1" wizard="1" developer="1"
- xmlns:samba="http://samba.org/common">
-<listitem>
- <para>If this option is specified, samba does not try to figure out what
- ads server to use itself, but uses the specified ads server. Either one
- DNS name or IP address can be used.</para>
-
- <para>Default: <command moreinfo="none">ads server = </command></para>
-
- <para>Example: <command moreinfo="none">ads server = 192.168.1.2</command></para>
-</listitem>
-
-</samba:parameter>
diff --git a/docs/docbook/smbdotconf/expand-smb.conf.xsl b/docs/docbook/smbdotconf/expand-smb.conf.xsl
deleted file mode 100644
index 62fc4a9ccf..0000000000
--- a/docs/docbook/smbdotconf/expand-smb.conf.xsl
+++ /dev/null
@@ -1,87 +0,0 @@
-<?xml version='1.0'?>
-<!-- vim:set sts=2 shiftwidth=2 syntax=xml: -->
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:exsl="http://exslt.org/common"
- xmlns:samba="http://samba.org/common"
- version="1.1"
- extension-element-prefixes="exsl">
-
-<xsl:output method="xml"/>
-
-<!-- Generates one big XML file for smb.conf -->
-
-<xsl:param name="xmlSambaNsUri" select="'http://samba.org/common'"/>
-
-<xsl:template match="refentry">
-<xsl:text disable-output-escaping="yes">
-&lt;!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
- "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
-
-&lt;!ENTITY % globalentities SYSTEM './../global.ent'> %globalentities;
-]>
-</xsl:text>
-<xsl:element name="refentry">
- <xsl:attribute name="id"><xsl:value-of select="@id"/></xsl:attribute>
- <xsl:apply-templates/>
-</xsl:element>
-</xsl:template>
-
-<!-- This is needed to copy content unchanged -->
-<xsl:template match="@*|node()">
- <xsl:copy>
- <xsl:apply-templates select="@*|node()"/>
- </xsl:copy>
-</xsl:template>
-
-
-<xsl:template match="//samba:parameter">
- <!-- reconstruct varlistentry - not all of them will go into separate files
- and also we must repair the main varlistentry itself.
- -->
- <xsl:message>
- <xsl:text>Processing samba:parameter (</xsl:text>
- <xsl:value-of select="@name"/>
- <xsl:text>)</xsl:text>
- </xsl:message>
-
- <xsl:variable name="name"><xsl:value-of select="translate(translate(string(@name),' ',''),
- 'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ')"/>
- </xsl:variable>
-
- <xsl:variable name="anchor">
- <xsl:element name="anchor">
- <xsl:attribute name="id">
- <xsl:value-of select="$name"/>
- </xsl:attribute>
- </xsl:element>
- </xsl:variable>
-
- <xsl:variable name="context">
- <xsl:text> (</xsl:text>
- <xsl:value-of select="@context"/>
- <xsl:text>)</xsl:text>
- </xsl:variable>
-
- <xsl:variable name="term">
- <xsl:element name="term">
- <xsl:copy-of select="$anchor"/>
- <xsl:value-of select="@name"/>
- <xsl:value-of select="$context"/>
- </xsl:element>
- </xsl:variable>
-
- <xsl:variable name="content">
- <xsl:apply-templates/>
- </xsl:variable>
-
- <xsl:element name="varlistentry">
- <xsl:text>&#10;</xsl:text>
- <xsl:copy-of select="$term"/>
- <xsl:copy-of select="$content"/>
- <xsl:text>
-</xsl:text>
- </xsl:element>
-
-</xsl:template>
-
-</xsl:stylesheet>
diff --git a/docs/docbook/smbdotconf/ldap/ldaptrustids.xml b/docs/docbook/smbdotconf/ldap/ldaptrustids.xml
deleted file mode 100644
index 36bbcb2fb4..0000000000
--- a/docs/docbook/smbdotconf/ldap/ldaptrustids.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<samba:parameter name="ldap trust ids"
- context="G"
- advanced="1" developer="1"
- xmlns:samba="http://samba.org/common">
-<listitem>
-
- <para>Normally, Samba validates each entry in the LDAP server
- against getpwnam(). This allows LDAP to be used for Samba with
- the unix system using NIS (for example) and also ensures that
- Samba does not present accounts that do not otherwise exist.
- </para>
-
- <para>This option is used to disable this functionality, and
- instead to rely on the presence of the appropriate attributes
- in LDAP directly, which can result in a significant performance
- boost in some situations. Setting this option to yes effectivly
- assumes that the local machine is running <command
- moreinfo="none">nss_ldap</command> against the same LDAP
- server.</para>
-
- <para>Default: <command moreinfo="none">ldap trust ids = No</command></para>
-</listitem>
-</samba:parameter>
diff --git a/docs/docbook/smbdotconf/printing/totalprintjobs.xml b/docs/docbook/smbdotconf/printing/totalprintjobs.xml
deleted file mode 100644
index ccdb137a69..0000000000
--- a/docs/docbook/smbdotconf/printing/totalprintjobs.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<samba:parameter name="total print jobs"
- context="G"
- print="1"
- xmlns:samba="http://samba.org/common">
-<listitem>
- <para>This parameter accepts an integer value which defines
- a limit on the maximum number of print jobs that will be accepted
- system wide at any given time. If a print job is submitted
- by a client which will exceed this number, then <citerefentry><refentrytitle>smbd</refentrytitle>
- <manvolnum>8</manvolnum></citerefentry> will return an
- error indicating that no space is available on the server. The
- default value of 0 means that no such limit exists. This parameter
- can be used to prevent a server from exceeding its capacity and is
- designed as a printing throttle. See also <link linkend="MAXPRINTJOBS">
- <parameter moreinfo="none">max print jobs</parameter></link>.
- </para>
-
- <para>Default: <command moreinfo="none">total print jobs = 0</command></para>
-
- <para>Example: <command moreinfo="none">total print jobs = 5000</command></para>
-</listitem>
-</samba:parameter>
diff --git a/docs/docbook/smbdotconf/security/nonunixaccountrange.xml b/docs/docbook/smbdotconf/security/nonunixaccountrange.xml
deleted file mode 100644
index 4004af2d94..0000000000
--- a/docs/docbook/smbdotconf/security/nonunixaccountrange.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<samba:parameter name="non unix account range"
- context="G"
- advanced="1" developer="1"
- xmlns:samba="http://samba.org/common">
-<listitem>
- <para>The non unix account range parameter specifies
- the range of 'user ids' that are allocated by the various 'non unix
- account' passdb backends. These backends allow
- the storage of passwords for users who don't exist in /etc/passwd.
- This is most often used for machine account creation.
- This range of ids should have no existing local or NIS users within
- it as strange conflicts can occur otherwise.</para>
-
- <note>
- <para>These userids never appear on the system and Samba will never
- 'become' these users. They are used only to ensure that the algorithmic
- RID mapping does not conflict with normal users.
- </para>
- </note>
-
- <para>Default: <command moreinfo="none">non unix account range = &lt;empty string&gt;</command></para>
-
- <para>Example: <command moreinfo="none">non unix account range = 10000-20000</command></para>
-</listitem>
-</samba:parameter>
diff --git a/docs/docbook/smbdotconf/smb.conf.5.xml b/docs/docbook/smbdotconf/smb.conf.5.xml
index db8eb81c28..2a5d190f69 100644
--- a/docs/docbook/smbdotconf/smb.conf.5.xml
+++ b/docs/docbook/smbdotconf/smb.conf.5.xml
@@ -396,10 +396,10 @@ alias|alias|alias|alias...
<listitem><para>the architecture of the remote
machine. Only some are recognized, and those may not be
100% reliable. It currently recognizes Samba, WfWg, Win95,
- WinNT, Win2k, WinXP, and Win2K3. Anything else will be known as
+ WinNT and Win2k. Anything else will be known as
&quot;UNKNOWN&quot;. If it gets it wrong then sending a level
- 3 log to <ulink url="mailto:samba-technical@samba.org">samba-technical@samba.org</ulink>
- should allow it to be fixed.</para></listitem>
+ 3 log to <ulink url="mailto:samba@samba.org">samba@samba.org
+ </ulink> should allow it to be fixed.</para></listitem>
</varlistentry>
<varlistentry>
@@ -507,11 +507,9 @@ alias|alias|alias|alias...
<varlistentry>
<term>case sensitive = yes/no</term>
- <listitem><para>controls whether filenames are case sensitive.
- Windows clients <emphasis>will</emphasis> break if you enable
- this parameter. It is only included for case insentive
- file systems (such as VFAT) and performance testing.
- Default <emphasis>no</emphasis>.</para></listitem>
+ <listitem><para>controls whether filenames are case sensitive. If
+ they aren't then Samba must do a filename search and match on passed
+ names. Default <emphasis>no</emphasis>.</para></listitem>
</varlistentry>
<varlistentry>
diff --git a/docs/docbook/smbdotconf/tuning/statcachesize.xml b/docs/docbook/smbdotconf/tuning/statcachesize.xml
deleted file mode 100644
index 0c8d4e0c72..0000000000
--- a/docs/docbook/smbdotconf/tuning/statcachesize.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<samba:parameter name="stat cache size"
- context="G"
- developer="1"
- xmlns:samba="http://samba.org/common">
-<listitem>
- <para>This parameter determines the number of
- entries in the <parameter moreinfo="none">stat cache</parameter>. You should
- never need to change this parameter.</para>
-
- <para>Default: <command moreinfo="none">stat cache size = 50</command></para>
-</listitem>
-</samba:parameter>
diff --git a/docs/docbook/smbdotconf/vfs/vfsoptions.xml b/docs/docbook/smbdotconf/vfs/vfsoptions.xml
deleted file mode 100644
index d07ec461e2..0000000000
--- a/docs/docbook/smbdotconf/vfs/vfsoptions.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<samba:parameter name="vfs options"
- context="S"
- xmlns:samba="http://samba.org/common">
-<listitem>
- <para>This parameter allows parameters to be passed
- to the vfs layer at initialization time.
- See also <link linkend="VFSOBJECT"><parameter moreinfo="none">
- vfs object</parameter></link>.</para>
-
- <para>Default: <emphasis>no value</emphasis></para>
-</listitem>
-</samba:parameter>
diff --git a/docs/docbook/smbdotconf/vfs/vfspath.xml b/docs/docbook/smbdotconf/vfs/vfspath.xml
deleted file mode 100644
index c6718a0076..0000000000
--- a/docs/docbook/smbdotconf/vfs/vfspath.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<samba:parameter name="vfs path"
- context="S"
- xmlns:samba="http://samba.org/common">
-<listitem>
- <para>This parameter specifies the directory
- to look in for vfs modules. The name of every <command moreinfo="none">vfs object
- </command> will be prepended by this directory.</para>
-
- <para>Default: <command moreinfo="none">vfs path = </command></para>
-
- <para>Example: <command moreinfo="none">vfs path = /usr/lib/samba/vfs</command></para>
-</listitem>
-</samba:parameter>