summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2004-06-10 15:27:37 +0000
committerGerald W. Carter <jerry@samba.org>2008-04-23 08:45:53 -0500
commitc5c6084cba19fb95cfae8c89bfc78bf8e161229a (patch)
tree3147f5247838d8b67d71f04cbc86add29509a87e
parent42797eb3a66f5dfb93bcfa18b7cb48c4ce1fa27a (diff)
downloadsamba-c5c6084cba19fb95cfae8c89bfc78bf8e161229a.tar.gz
samba-c5c6084cba19fb95cfae8c89bfc78bf8e161229a.tar.bz2
samba-c5c6084cba19fb95cfae8c89bfc78bf8e161229a.zip
Winbind is installed in sbin/winbindd, not bin/winbindd... (bug #1101)
(This used to be commit 226b1d79c5d18f6fdbe68c8b73c7bb8e8c2f636b)
-rw-r--r--docs/howto/Winbind.xml16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/howto/Winbind.xml b/docs/howto/Winbind.xml
index e5c039e9a1..2f3018f894 100644
--- a/docs/howto/Winbind.xml
+++ b/docs/howto/Winbind.xml
@@ -637,7 +637,7 @@ command as root:
</para>
<para>
-&rootprompt;<userinput>/usr/local/samba/bin/winbindd</userinput>
+&rootprompt;<userinput>/usr/local/samba/sbin/winbindd</userinput>
</para>
<note><para>
@@ -656,7 +656,7 @@ You can enable dual daemon mode by adding <option>-B</option> to the command-lin
</para>
<para>
-&rootprompt;<userinput>/usr/local/samba/bin/winbindd -B</userinput>
+&rootprompt;<userinput>/usr/local/samba/sbin/winbindd -B</userinput>
</para>
<para>
@@ -774,7 +774,7 @@ start() {
echo
KIND="Winbind"
echo -n $"Starting $KIND services: "
- daemon /usr/local/samba/bin/winbindd
+ daemon /usr/local/samba/sbin/winbindd
RETVAL3=$?
echo
[ $RETVAL -eq 0 -a $RETVAL2 -eq 0 -a $RETVAL3 -eq 0 ] &amp;&amp; \
@@ -786,13 +786,13 @@ start() {
<para>If you would like to run winbindd in dual daemon mode, replace
the line :
<programlisting>
- daemon /usr/local/samba/bin/winbindd
+ daemon /usr/local/samba/sbin/winbindd
</programlisting>
in the example above with:
<programlisting>
- daemon /usr/local/samba/bin/winbindd -B
+ daemon /usr/local/samba/sbin/winbindd -B
</programlisting>.
</para>
@@ -874,7 +874,7 @@ usually only starts smbd and nmbd but should now start winbindd, too. If you hav
/usr/local/samba/var/log -s /usr/local/samba/smb.conf
echo Starting Winbind Daemon
- /usr/local/samba/bin/winbindd
+ /usr/local/samba/sbin/winbindd
;;
'stop')
@@ -892,11 +892,11 @@ usually only starts smbd and nmbd but should now start winbindd, too. If you hav
<para>
Again, if you would like to run Samba in dual daemon mode, replace:
<programlisting>
- /usr/local/samba/bin/winbindd
+ /usr/local/samba/sbin/winbindd
</programlisting>
in the script above with:
<programlisting>
- /usr/local/samba/bin/winbindd -B
+ /usr/local/samba/sbin/winbindd -B
</programlisting>
</para>