diff --git a/lib/ansible/module_utils/service.py b/lib/ansible/module_utils/service.py index a296afb2c9..9b0c65310a 100644 --- a/lib/ansible/module_utils/service.py +++ b/lib/ansible/module_utils/service.py @@ -208,7 +208,7 @@ def daemonize(module, cmd): fds = [p.stdout, p.stderr] # loop reading output till its done - output = {p.stdout: b(""), p.sterr: b("")} + output = {p.stdout: b(""), p.stderr: b("")} while fds: rfd, wfd, efd = select.select(fds, [], fds, 1) if (rfd + wfd + efd) or p.poll():