Skip to content

Commit

Permalink
Merge pull request sap-linuxlab#796 from marcelmamula/zypper
Browse files Browse the repository at this point in the history
sap_hana_preconfigure/SLES: Zypper lock handler for sap-linuxlab#791
  • Loading branch information
marcelmamula authored Jul 9, 2024
2 parents c0c6a82 + abf3de3 commit 34ef551
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 34ef551

Please sign in to comment.