Fail if "rcctl status" writes to stderr.

This commit is contained in:
Patrik Lundin 2014-08-28 16:50:37 +02:00 committed by Jonathan Armani
parent 1a8cdb5e3e
commit c6dd88c1d1

View file

@ -987,6 +987,8 @@ class OpenBsdService(Service):
else:
action = "disable %s" % self.name
if rc == 1:
if stderr:
self.module.fail_json(msg=stderr)
return
if self.module.check_mode: