mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix typo in message.
This commit is contained in:
parent
4bef5dd08b
commit
cbeda6dbfb
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ def daemonize_self(module, password, port, minutes):
|
||||||
if pid > 0:
|
if pid > 0:
|
||||||
log("exiting pid %s" % pid)
|
log("exiting pid %s" % pid)
|
||||||
# exit first parent
|
# exit first parent
|
||||||
module.exit_json(msg="daemonzed fireball on port %s for %s minutes" % (port, minutes))
|
module.exit_json(msg="daemonized fireball on port %s for %s minutes" % (port, minutes))
|
||||||
except OSError, e:
|
except OSError, e:
|
||||||
log("fork #1 failed: %d (%s)" % (e.errno, e.strerror))
|
log("fork #1 failed: %d (%s)" % (e.errno, e.strerror))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
Loading…
Reference in a new issue