-
Notifications
You must be signed in to change notification settings - Fork 359
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RHEL-10: Fix download of stage2 image from .treeinfo #6109
Open
jkonecny12
wants to merge
6
commits into
rhinstaller:rhel-10
Choose a base branch
from
jkonecny12:rhel-10-fix-updir-unified-iso
base: rhel-10
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
RHEL-10: Fix download of stage2 image from .treeinfo #6109
jkonecny12
wants to merge
6
commits into
rhinstaller:rhel-10
from
jkonecny12:rhel-10-fix-updir-unified-iso
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
With commit 0785531 the `get_config` function in anaconda-lib.sh was broken because missing quotes removed leading and trailing whitespace characters automatically but after the fix in commit mentioned above this side effect was fixed which lead in broken code. In other words the key were never matched because of trailing whitespace. Issue raised by this is not being able to read .treeinfo and .buildstamp files in Dracut. Example of such situation is broken boot when stage2 image is stored under special path mentioned in .treeinfo file. (cherry picked from commit 2336ba8) Related: RHEL-48821
In Dracut the URL concatenation from .treeinfo could also point you to directory above by `..`. However, if the `inst.repo=` argument was set with trailing `/` it will create URL which is not supported by curl. Supported: `os/../BaseOS/` Unsupported by curl: `os//../BaseOS/` Remove the trailing `/` to avoid this issue. (cherry picked from commit 5cb0300) Resolves: RHEL-48821
This commit will also add code to enable testing of the Dracut shell scripts. (cherry picked from commit 69da1b4) Related: RHEL-48821
Dracut testing should be more versatile with this approach. This is more an extension for future testing. (cherry picked from commit 29debf1) Related: RHEL-48821
For better visibility that we have such a tests. (cherry picked from commit 7e9ed4e) Related: RHEL-48821
- Remove outdated parts - Fix minor issues - Add missing parts - Improve security topics Related: RHEL-48821
jkonecny12
changed the title
RHWL-10: Fix download of stage2 image from .treeinfo
RHEL-10: Fix download of stage2 image from .treeinfo
Jan 24, 2025
/kickstart-test --testtype smoke |
M4rtinK
approved these changes
Jan 27, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking good. :)
jkonecny12
added
the
ready to merge
The PR can be merged. It should have all BZ flags required for releasing set (usually release+).
label
Jan 27, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
ready to merge
The PR can be merged. It should have all BZ flags required for releasing set (usually release+).
rhel-10
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 is fix to enable downloading stage2 image from a non default place with .treeinfo file. If .treeinfo has a path to the stage2 image it will be used as the first variant, in case this will fail it will fallback to default paths.
This is fixing two parts:
Reading values from configuration file (.treeinfo and .buildstamp).
Fix issue that curl is not able to understand // in the path.
This PR backports:
Resolves: RHEL-48821