From 5d7cb981d3f5932a343c4be1d58ec266108b4b1f Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Thu, 13 Aug 2015 10:05:30 -0400 Subject: [PATCH] made continue into a pass (there was no loop) --- system/service.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/service.py b/system/service.py index edf5e8e6d34..8495bec9e24 100644 --- a/system/service.py +++ b/system/service.py @@ -21,7 +21,7 @@ DOCUMENTATION = ''' --- module: service -author: +author: - "Ansible Core Team" - "Michael DeHaan" version_added: "0.1" @@ -984,7 +984,7 @@ class FreeBsdService(Service): rcvars = shlex.split(stdout, comments=True) except: #TODO: add a warning to the output with the failure - continue + pass if not rcvars: self.module.fail_json(msg="unable to determine rcvar", stdout=stdout, stderr=stderr)