diff options
author | Gerald Carter <jerry@samba.org> | 2003-01-03 17:32:11 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-01-03 17:32:11 +0000 |
commit | df4af79c784fa3dbc14c8ca2eefc51c78a22e26b (patch) | |
tree | bab44414072172eee3c14b1ba758e9f7a4043e7c /source3/web | |
parent | fc744091d4cddb49024c542b77d140f2cb6cef4f (diff) | |
download | samba-df4af79c784fa3dbc14c8ca2eefc51c78a22e26b.tar.gz samba-df4af79c784fa3dbc14c8ca2eefc51c78a22e26b.tar.bz2 samba-df4af79c784fa3dbc14c8ca2eefc51c78a22e26b.zip |
patch to include support for daemontools from Michael Handler
(This used to be commit 4c48c475a28450ad4fd8dcc8263e841c0c39a80e)
Diffstat (limited to 'source3/web')
-rw-r--r-- | source3/web/startstop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/web/startstop.c b/source3/web/startstop.c index e10dff4118..c6babff954 100644 --- a/source3/web/startstop.c +++ b/source3/web/startstop.c @@ -39,7 +39,7 @@ void start_smbd(void) slprintf(binfile, sizeof(pstring) - 1, "%s/smbd", dyn_SBINDIR); - become_daemon(); + become_daemon(True); execl(binfile, binfile, "-D", NULL); @@ -60,7 +60,7 @@ void start_nmbd(void) slprintf(binfile, sizeof(pstring) - 1, "%s/nmbd", dyn_SBINDIR); - become_daemon(); + become_daemon(True); execl(binfile, binfile, "-D", NULL); @@ -81,7 +81,7 @@ void start_winbindd(void) slprintf(binfile, sizeof(pstring) - 1, "%s/winbindd", dyn_SBINDIR); - become_daemon(); + become_daemon(True); execl(binfile, binfile, NULL); |