diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-01-28 13:52:38 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-01-28 13:52:38 +0000 |
commit | 218cb945032d2aee21948fe5e6e4418ba648f82d (patch) | |
tree | 56893569f8b5133b1f5bfe737b90635f7b44004e /docs/docbook/projdoc/winbind.sgml | |
parent | f2b57195e0e3f84477b40d60fd8da81f421475b3 (diff) | |
download | samba-218cb945032d2aee21948fe5e6e4418ba648f82d.tar.gz samba-218cb945032d2aee21948fe5e6e4418ba648f82d.tar.bz2 samba-218cb945032d2aee21948fe5e6e4418ba648f82d.zip |
First step in converting to XML: use strict syntax
(This used to be commit 89f9a0a0c451a627b70c8373431e691ab964c1ef)
Diffstat (limited to 'docs/docbook/projdoc/winbind.sgml')
-rw-r--r-- | docs/docbook/projdoc/winbind.sgml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/docs/docbook/projdoc/winbind.sgml b/docs/docbook/projdoc/winbind.sgml index d2bfb8ab67..b144c5e06b 100644 --- a/docs/docbook/projdoc/winbind.sgml +++ b/docs/docbook/projdoc/winbind.sgml @@ -2,6 +2,7 @@ <chapterinfo> + <authorgroup> <author> <firstname>Tim</firstname><surname>Potter</surname> <affiliation> @@ -10,7 +11,7 @@ </affiliation> </author> <author> - <firstname>Andrew</firstname><surname>Trigdell</surname> + <firstname>Andrew</firstname><surname>Tridgell</surname> <affiliation> <orgname>Samba Team</orgname> <address><email>tridge@linuxcare.com.au</email></address> @@ -35,6 +36,7 @@ <address><email>jelmer@nl.linux.org</email></address> </affiliation> </author> + </authorgroup> <pubdate>27 June 2002</pubdate> </chapterinfo> @@ -552,7 +554,7 @@ include the following entries in the [global] section: <para><programlisting> [global] - <...> + <...> # separate domain and username with '+', like DOMAIN+username <ulink url="winbindd.8.html#WINBINDSEPARATOR">winbind separator</ulink> = + # use uids from 10000 to 20000 for domain users @@ -733,7 +735,7 @@ start() { daemon /usr/local/samba/bin/winbindd RETVAL3=$? echo - [ $RETVAL -eq 0 -a $RETVAL2 -eq 0 -a $RETVAL3 -eq 0 ] && touch /var/lock/subsys/smb || \ + [ $RETVAL -eq 0 -a $RETVAL2 -eq 0 -a $RETVAL3 -eq 0 ] && touch /var/lock/subsys/smb || \ RETVAL=1 return $RETVAL } @@ -760,7 +762,7 @@ stop() { echo -n $"Shutting down $KIND services: " killproc winbindd RETVAL3=$? - [ $RETVAL -eq 0 -a $RETVAL2 -eq 0 -a $RETVAL3 -eq 0 ] && rm -f /var/lock/subsys/smb + [ $RETVAL -eq 0 -a $RETVAL2 -eq 0 -a $RETVAL3 -eq 0 ] && rm -f /var/lock/subsys/smb echo "" return $RETVAL } @@ -791,7 +793,7 @@ killproc() { # kill the named process(es) pid=`/usr/bin/ps -e | /usr/bin/grep -w $1 | /usr/bin/sed -e 's/^ *//' -e 's/ .*//'` - [ "$pid" != "" ] && kill $pid + [ "$pid" != "" ] && kill $pid } # Start/stop processes required for samba server @@ -1042,7 +1044,7 @@ annoying double prompts for passwords. </para> <para> -Now restart your Samba & try connecting through your application that you +Now restart your Samba and try connecting through your application that you configured in the pam.conf. </para> |