Commit 85b8538e by martin f. krafft

Expand usage of Python 2.6 if statement

Syntax like "'foo' if bar else 'baz'" is not supported by all Python
versions targetted by Ansible. Hence we break it up.

Signed-off-by: martin f. krafft <madduck@madduck.net>
parent 3df2e152
......@@ -548,7 +548,10 @@ class LinuxService(Service):
return
if self.enable_cmd.endswith("update-rc.d"):
action = 'enable' if self.enable else 'disable'
if self.enable:
action = 'enable'
else:
action = 'disable'
(rc, out, err) = self.execute_command("%s -n %s %s" \
% (self.enable_cmd, self.name, action))
self.changed = False
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment