avoid shlex exceptions in rc parsing (happens with multiline entries)
fixes #1898
This commit is contained in:
parent
090926b938
commit
7a2687178e
1 changed files with 5 additions and 1 deletions
|
@ -980,7 +980,11 @@ class FreeBsdService(Service):
|
|||
|
||||
rc, stdout, stderr = self.execute_command("%s %s %s %s" % (self.svc_cmd, self.name, 'rcvar', self.arguments))
|
||||
cmd = "%s %s %s %s" % (self.svc_cmd, self.name, 'rcvar', self.arguments)
|
||||
rcvars = shlex.split(stdout, comments=True)
|
||||
try:
|
||||
rcvars = shlex.split(stdout, comments=True)
|
||||
except:
|
||||
#TODO: add a warning to the output with the failure
|
||||
continue
|
||||
|
||||
if not rcvars:
|
||||
self.module.fail_json(msg="unable to determine rcvar", stdout=stdout, stderr=stderr)
|
||||
|
|
Loading…
Reference in a new issue