-
Notifications
You must be signed in to change notification settings - Fork 14
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
Logic to conditionally-create user.cfg
files to support EFI-booted systems.
#490
Conversation
Stuff on (VFAT-formatted) /boot/efi won't accept mode-change attempts
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.
I think this isn't quite going to work the way we want... It will execute both cat1.RHEL-08-010140
and cat1.RHEL-08-010150
on every system, both EFI-booted and BIOS-booted systems. The require
is used only for ordering, and only cancels depending states if the required state fails. But "no changes" or "skip" are counted as "success". Which means the states operating on grubUserFile
, which is the same file in each case, will execute twice.
nuke extra space Co-authored-by: Loren Gordon <[email protected]>
Fix copy-paystah error Co-authored-by: Loren Gordon <[email protected]>
Nuke cruft Co-authored-by: Loren Gordon <[email protected]>
Co-authored-by: Loren Gordon <[email protected]>
Closes #487