You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
While attempting to resolve #22, noticed that EC2s launched from the spel AMIs (for EL9) were showing "Consistent Network Device Naming" interface-names (ens5 on Nitro instance-types, enX0 on non-Nitro instance-types) instead of generic devicenames (i.e., eth0, etc.). Upon further digging, it became obvious that the contents of the /etc/default/grub file were being ignored when grubby updated the boot-configs.
Describe the solution you'd like
Ensure that the /etc/default/grub file's contents are getting properly ingested when grub2-mkconfig is run.
Describe alternatives you've considered
Additional context
Right now, it looks like the /etc/default/grub file's contents are getting ignored when grub2-mkconfig is run. Looks like, with 9.3+, need to modify the grub2-mkconfig line in PostBuild.sh:
Is your feature request related to a problem? Please describe.
While attempting to resolve #22, noticed that EC2s launched from the spel AMIs (for EL9) were showing "Consistent Network Device Naming" interface-names (
ens5
on Nitro instance-types,enX0
on non-Nitro instance-types) instead of generic devicenames (i.e.,eth0
, etc.). Upon further digging, it became obvious that the contents of the/etc/default/grub
file were being ignored whengrubby
updated the boot-configs.Describe the solution you'd like
Ensure that the
/etc/default/grub
file's contents are getting properly ingested whengrub2-mkconfig
is run.Describe alternatives you've considered
Additional context
Right now, it looks like the
/etc/default/grub
file's contents are getting ignored whengrub2-mkconfig
is run. Looks like, with 9.3+, need to modify thegrub2-mkconfig
line inPostBuild.sh
:/sbin/grub2-mkconfig > /boot/grub2/grub.cfg
to
However, even this seems to not be producing the expected results
The text was updated successfully, but these errors were encountered: