Skip to content
Snippets Groups Projects
Unverified Commit 5aa1c7cb authored by Rafael Guterres Jeffman's avatar Rafael Guterres Jeffman Committed by GitHub
Browse files

Merge pull request #1236 from t-woerner/fix_idempotency_issues_ipaservice

ipaservice: Do not set continue to None for service_del
parents cbff802d 5c61f14c
No related branches found
No related tags found
No related merge requests found
......@@ -840,7 +840,9 @@ def main():
elif state == "absent":
if action == "service":
if res_find is not None:
args = {'continue': delete_continue}
args = {}
if delete_continue is not None:
args['continue'] = delete_continue
commands.append([name, 'service_del', args])
elif action == "member":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment