We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi i have a little bug here or i dont unterstand this module ;)
kernel_parameter { "ipv6.disable": ensure => present, bootmode => 'all' }
GRUB_CMDLINE_LINUX_DEFAULT="ipv6.disable quiet" GRUB_CMDLINE_LINUX="ipv6.disable"
GRUB_CMDLINE_LINUX_DEFAULT="quiet" GRUB_CMDLINE_LINUX="ipv6.disable"
The parameter is not set in all bootmodes.
when i set bootmode to "default". I get my parameter only in GRUB_CMDLINE_LINUX_DEFAULT.
The text was updated successfully, but these errors were encountered:
I think this is the same as #52 and #23.
Sorry, something went wrong.
No branches or pull requests
Hi i have a little bug here or i dont unterstand this module ;)
Puppet manifest
kernel_parameter { "ipv6.disable": ensure => present, bootmode => 'all' }
i expect this in /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="ipv6.disable quiet"
GRUB_CMDLINE_LINUX="ipv6.disable"
but i get this
GRUB_CMDLINE_LINUX_DEFAULT="quiet"
GRUB_CMDLINE_LINUX="ipv6.disable"
The parameter is not set in all bootmodes.
when i set bootmode to "default". I get my parameter only in GRUB_CMDLINE_LINUX_DEFAULT.
The text was updated successfully, but these errors were encountered: