marcelmamula
marcelmamula
Change contained in PR https://github.com/sap-linuxlab/community.sap_install/pull/642
@berndfinger @Wabri There seems to be something with Checks, datas > data is clear typo, but they all failed.
@rob0d We will be implementing validations in sap_install roles some time in future to achieve this. @sean-freeman There are already some ways we handle it during our tests and developments,...
`sap_hana_install` role already contains check for HANA existence and I think it can be partially reused to enhance `sap_swpm` role to not destroy system during re-executions. - check for existence...
@rob0d My custom playbooks have HSR idempotency as well, with following code. - I check profile existence before hana install so I can skip it - I check it after...
Test done: ```yaml - name: Remove python3-rpm ansible.builtin.package: name: python3-rpm state: absent - name: Gather package facts after removal ansible.builtin.package_facts: ignore_errors: true - name: Install python3-rpm ansible.builtin.package: name: python3-rpm state:...
@berndfinger I would suggest different approach. It is easier to create batches of 100 files and run them in loop. This is short example I made for test, which splits...
@sean-freeman Which OS version did you try? I just tried on SLES15 SP4 and SLES4SAP 15 SP5 and python3-rpm is preinstalled on both of them out of box.
@berndfinger This suggestion looks feasible albeit being very much edge case, intended only for testing and engineering purpose.
@berndfinger Wouldn't this become redundant change when https://github.com/sap-linuxlab/community.sap_install/pull/720 is implemented?