mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Work around hanging module. Thanks to Daniel Hozac for the tip.
This commit is contained in:
parent
18d9fc581d
commit
acf8ee9d61
1 changed files with 1 additions and 1 deletions
|
@ -607,7 +607,7 @@ class NetBsdService(Service):
|
||||||
self.action = "onestop"
|
self.action = "onestop"
|
||||||
|
|
||||||
self.svc_cmd = "%s" % self.svc_initscript
|
self.svc_cmd = "%s" % self.svc_initscript
|
||||||
return self.execute_command("%s %s" % (self.svc_cmd, self.action))
|
return self.execute_command("%s %s" % (self.svc_cmd, self.action), daemonize=True)
|
||||||
|
|
||||||
|
|
||||||
# ===========================================
|
# ===========================================
|
||||||
|
|
Loading…
Reference in a new issue