Skip to content

Commit

Permalink
Fix logic so the task doesn't fail incorrectly when Satellite is inst…
Browse files Browse the repository at this point in the history
…alled (#450)
  • Loading branch information
timdenholm authored Dec 21, 2024
1 parent 630bdd8 commit 413d001
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/setup_server/tasks/setup_rh_satellite_repos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
- name: Error message if Satellite is missing
ansible.builtin.fail:
msg: "Satellite not found, please ensure Satallite is configured properly"
when: katello_file.stat.exists
when: not katello_file.stat.exists

- name: Debug
ansible.builtin.debug:
Expand Down

0 comments on commit 413d001

Please sign in to comment.