Skip to content

Commit

Permalink
Manage extra dependency for 12sp5 fence-agents
Browse files Browse the repository at this point in the history
  • Loading branch information
mpagot committed Aug 7, 2024
1 parent 21c160a commit c697966
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions ansible/playbooks/tasks/azure-cluster-bootstrap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,20 @@
when:
- ansible_distribution_version is version('15.4', '>=')

- name: Ensure cluster dependencies for SLES 12-SP5 are installed
community.general.zypper:
name: "{{ item }}" # Caution, no version control here (yet)
state: present
loop:
- python3-pycurl # Workaround for bsc#1226671.
- python3-azure-identity
register: result
until: result is succeeded
retries: 3
delay: 60
when:
- ansible_distribution_version is version('12.5', '==')

- name: Get the status of all extensions
ansible.builtin.command:
cmd: SUSEConnect -s
Expand Down

0 comments on commit c697966

Please sign in to comment.