diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-03-13 18:25:08 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:46:20 -0500 |
commit | c97b78b4452ef39ffe28a1427f6f555248a70a1c (patch) | |
tree | 840ac93686b2f0463b51b9ffcd4e1ce659e909e1 /docs/Samba-HOWTO-Collection/Install.xml | |
parent | d74de63ddbf5cf0194a7f9d12e608e6e95da6d6c (diff) | |
download | samba-c97b78b4452ef39ffe28a1427f6f555248a70a1c.tar.gz samba-c97b78b4452ef39ffe28a1427f6f555248a70a1c.tar.bz2 samba-c97b78b4452ef39ffe28a1427f6f555248a70a1c.zip |
More validation fixes; building FO-PDF versions of the HOWTO and
the Guide work now!
(This used to be commit 2192c44663d3031cd6c0f228aea4a8cdd2a29a82)
Diffstat (limited to 'docs/Samba-HOWTO-Collection/Install.xml')
-rw-r--r-- | docs/Samba-HOWTO-Collection/Install.xml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/Samba-HOWTO-Collection/Install.xml b/docs/Samba-HOWTO-Collection/Install.xml index 04630a111a..60266274af 100644 --- a/docs/Samba-HOWTO-Collection/Install.xml +++ b/docs/Samba-HOWTO-Collection/Install.xml @@ -63,13 +63,13 @@ <smbconfexample id="smbconfminimal"> <title>A minimal smb.conf</title> - <smbconfsection>[global]</smbconfsection> + <smbconfsection name="[global]"/> <smbconfoption name="workgroup">WKG</smbconfoption> <smbconfoption name="netbios name">MYNAME</smbconfoption> - <smbconfsection>[share1]</smbconfsection> + <smbconfsection name="[share1]"/> <smbconfoption name="path">/tmp</smbconfoption> - <smbconfsection>[share2]</smbconfsection> + <smbconfsection name="[share2]"/> <smbconfoption name="path">/my_shared_folder</smbconfoption> <smbconfoption name="comment">Some random files</smbconfoption> </smbconfexample> @@ -150,10 +150,10 @@ <indexterm><primary>simple configuration</primary></indexterm> <smbconfexample id="simple-example"> <title>Another simple smb.conf File</title> -<smbconfsection>[global]</smbconfsection> +<smbconfsection name="[global]"/> <smbconfoption name="workgroup">&example.workgroup;</smbconfoption> -<smbconfsection>[homes]</smbconfsection> +<smbconfsection name="[homes]"/> <smbconfoption name="guest ok">no</smbconfoption> <smbconfoption name="read only">no</smbconfoption> </smbconfexample> @@ -161,7 +161,7 @@ <para> This will allow connections by anyone with an account on the server, using either - their login name or <smbconfsection>homes</smbconfsection> as the service name. + their login name or <smbconfsection name="homes"/> as the service name. (Note: The workgroup that Samba should appear in must also be set. The default workgroup name is WORKGROUP.) </para> @@ -172,7 +172,7 @@ <para> For more information about security settings for the - <smbconfsection>[homes]</smbconfsection> share please refer to + <smbconfsection name="[homes]"/> share please refer to <link linkend="securing-samba">Securing Samba</link> chapter. </para> @@ -263,7 +263,7 @@ <para>Typically <replaceable>yourhostname</replaceable> is the name of the host on which &smbd; has been installed. The <replaceable>aservice</replaceable> is any service that has been defined in the &smb.conf; - file. Try your user name if you just have a <smbconfsection>[homes]</smbconfsection> section in the &smb.conf; file.</para> + file. Try your user name if you just have a <smbconfsection name="[homes]"/> section in the &smb.conf; file.</para> <para>Example: If the UNIX host is called <replaceable>bambi</replaceable> and a valid login name is <replaceable>fred</replaceable>, you would type:</para> |