mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-08-01 04:14:42 +00:00
Fix unnecessary usage of if.
This commit is contained in:
@@ -771,7 +771,7 @@ def main():
|
|||||||
elif state == "absent":
|
elif state == "absent":
|
||||||
if action == "service":
|
if action == "service":
|
||||||
if res_find is not None:
|
if res_find is not None:
|
||||||
args = {'continue': True if delete_continue else False}
|
args = {'continue': delete_continue}
|
||||||
commands.append([name, 'service_del', args])
|
commands.append([name, 'service_del', args])
|
||||||
|
|
||||||
elif action == "member":
|
elif action == "member":
|
||||||
|
|||||||
Reference in New Issue
Block a user