-
Notifications
You must be signed in to change notification settings - Fork 44
DLPX-72158 create script to more easily update grub configuration #478
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
DLPX-72158 create script to more easily update grub configuration #478
Conversation
e0bb5fc
to
698a8ef
Compare
698a8ef
to
80d4e80
Compare
2ce2881
to
72a61b2
Compare
72a61b2
to
87692b1
Compare
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.
Add debugging to the install step?
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.
Should this be used by the upgrade scripts?
possibly.. I think we definitely could.. as is, this script doesn't support not-in-place upgrades, but that could likely be added (or removed, since we never do not-in-place upgrades).. the problem, though, is the script only exists for "new" versions (after we land it), so in order to eliminate the duplicated code between here, and upgrade, we'd need to wait for the "min version" to be a version containing this script.. I'm not opposed to having some version conditional.. e.g. "if running version with script; use script; otherwise run commands".. or just waiting till "min version" is adequate, and then always use the script.. regardless, that work would be in appliance-build's repository/scripts, and we'd need to land this change first.. if you feel strongly, I can land this change, and then look into the changes needed to consume it via upgrade.. |
Updating the bootloader on an appliance requires a series of commands to be run, which is easy to forget.Problem
Add a script to the appliance to make it easy to update the bootloader as needed, with a single command.Solution
Testing