Skip to content

Commit

Permalink
fix logical error in main.yml
Browse files Browse the repository at this point in the history
fixes issue 52
  • Loading branch information
abrad3 authored and jakub-vavra-cz committed Jun 7, 2024
1 parent f93a5da commit 99888cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansible/roles/ad/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
register: result
failed_when: "result.rc != 255 and result.rc != 0"
changed_when: "result.rc == 0"
until: "result.rc == 0"
until: "result.rc == 255 or result.rc == 0"
# The AD is sometimes not ready to proccess requests so we retry
# to make it stable.
retries: 5
Expand Down

0 comments on commit 99888cd

Please sign in to comment.