Skip to content

Commit

Permalink
zypper lock handler
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelmamula committed Jul 8, 2024
1 parent c8762a9 commit abf3de3
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions roles/sap_general_preconfigure/handlers/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,18 @@
when:
- sap_general_preconfigure_reboot_ok|d(false)

# Kernel update triggers zypper purge-kernels and lock after reboot.
- name: Wait for Zypper lock to be released
ansible.builtin.command:
cmd: zypper info zypper
retries: 60
timeout: 5
listen: __sap_general_preconfigure_reboot_handler
when:
- ansible_os_family == 'Suse'
- sap_general_preconfigure_reboot_ok | d(false)
changed_when: false

- name: Let the role fail if a reboot is required
ansible.builtin.fail:
msg: Reboot is required!
Expand Down
12 changes: 12 additions & 0 deletions roles/sap_hana_preconfigure/handlers/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,18 @@
when:
- sap_hana_preconfigure_reboot_ok | d(false)

# Kernel update triggers zypper purge-kernels and lock after reboot.
- name: Wait for Zypper lock to be released
ansible.builtin.command:
cmd: zypper info zypper
retries: 60
timeout: 5
listen: __sap_hana_preconfigure_reboot_handler
when:
- ansible_os_family == 'Suse'
- sap_hana_preconfigure_reboot_ok | d(false)
changed_when: false

- name: Let the role fail if a reboot is required
ansible.builtin.fail:
msg: Reboot is required!
Expand Down

0 comments on commit abf3de3

Please sign in to comment.