Skip to content
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

Debian 10 - kernel parameter does not work #52

Open
linuxdan opened this issue Apr 7, 2020 · 3 comments
Open

Debian 10 - kernel parameter does not work #52

linuxdan opened this issue Apr 7, 2020 · 3 comments
Labels
bug Something isn't working

Comments

@linuxdan
Copy link

linuxdan commented Apr 7, 2020

kernel_parameter { 'quiet': ensure => absent, }

And I still see it in /etc/default/grub and /boot/grub/grub.cfg

A debug puppet agent run says
Nothing to manage. no ensure and the resource doesn't exist

@kenyon
Copy link
Member

kenyon commented Nov 26, 2020

quiet is normally in GRUB_CMDLINE_LINUX_DEFAULT, so you have to also set bootmode => default, then this module works as expected:

  kernel_parameter { 'quiet':
    ensure   => absent,
    bootmode => default,
  }

@kenyon
Copy link
Member

kenyon commented Nov 26, 2020

Actually, the documentation seems to imply that doing simply as you stated, leaving bootmode at the default of all, and using ensure => absent, the parameter should be removed from both GRUB_CMDLINE_LINUX_DEFAULT and GRUB_CMDLINE_LINUX. So I think this is a bug.

@toggetit
Copy link

Hello!
Is anybody found solution for this bug?

@kenyon kenyon added the bug Something isn't working label Jun 30, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants