From fff486ca0328e5eac8b613fe6fb647c64b48eb1c Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sun, 8 Apr 2018 10:13:19 -0500 Subject: [PATCH] pyrocufflink: Ensure winbind is running Since the first pass of `pyrocufflink.yml` always fails to start the *winbind* service (since the machine is not yet a member of the domain), a second pass is required to start it. It can't be started as part of the *winbind* role, though, since it would fail. As such, it has to be started at the very end of the play. --- pyrocufflink.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyrocufflink.yml b/pyrocufflink.yml index f94ec9b..91b8843 100644 --- a/pyrocufflink.yml +++ b/pyrocufflink.yml @@ -3,3 +3,8 @@ - winbind - nsswitch - system-auth + tasks: + - name: ensure winbind is running + service: + name=winbind + state=started