Fix upgrade on systems with private root mountpoint and multiple partitions #12
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This proposed change fixes upgrades on CloudLinux systems with multiple partitions.
Before this change, upgrade exited with "Can not load RPM file" error if server had multiple partitions mounted on CloudLinux.
This error happened because leapp is expecting mounts to be shared when it creates installroot in overlayfs and it's true for CentOS-based systems, but not for CloudLinux, where mounts are remounted as private on boot.
As a result, some mounts were missing in installroot.
CentOS:
CloudLinux:
This patch explicitely adds --make-shared argument to mount which results in shared mounts creation during elevation:
As a result, overlayfs creation also succedes and upgrade works as it would work on regular CentOS.
This patch fixes CLOS-2565 and also probably RHEL-23449.