From 0c3474b45e9ed8ad85bc524fa131033123da2d51 Mon Sep 17 00:00:00 2001 From: Ira Cooper Date: Tue, 6 Mar 2012 20:58:37 -0500 Subject: [PATCH] s3: piddir creation fix part 2. Since the piddir got moved from the lockdir by default, the default piddir wasn't getting created, stopping some configurations from running. Signed-off-by: Jeremy Allison --- source3/nmbd/nmbd.c | 4 ++++ source3/winbindd/winbindd.c | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/source3/nmbd/nmbd.c b/source3/nmbd/nmbd.c index 7bd4facbb18..52d7ed9e4e7 100644 --- a/source3/nmbd/nmbd.c +++ b/source3/nmbd/nmbd.c @@ -937,6 +937,10 @@ static bool open_sockets(bool isdaemon, int port) mkdir(lp_lockdir(), 0755); } + if (!directory_exist(lp_piddir())) { + mkdir(lp_piddir(), 0755); + } + pidfile_create("nmbd"); status = reinit_after_fork(msg, nmbd_event_context(), diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c index 3806eb8b2ba..d1d36fd0073 100644 --- a/source3/winbindd/winbindd.c +++ b/source3/winbindd/winbindd.c @@ -1404,6 +1404,10 @@ int main(int argc, char **argv, char **envp) mkdir(lp_lockdir(), 0755); } + if (!directory_exist(lp_piddir())) { + mkdir(lp_piddir(), 0755); + } + /* Setup names. */ if (!init_names()) -- 2.11.4.GIT