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>
reviewable/pr18780/r1
martin f. krafft 12 years ago
parent 22b30b9281
commit 3b7b061b07

@ -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

Loading…
Cancel
Save