Gitlab Community Edition Instance

Skip to content
Snippets Groups Projects
Commit ca18d077 authored by Benedikt Wegmann's avatar Benedikt Wegmann
Browse files

manifests/grub.pp: Menu-Timeouts angepasst

parent 24c472de
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,26 @@ class ubuntu_server::grub{
} ~> Exec['update-grub']
}
file_line{'grub_config_4':
path => '/etc/default/grub',
line => 'GRUB_TIMEOUT=15',
match => '^GRUB_TIMEOUT=',
} ~> Exec['update-grub']
file_line{'grub_config_5':
path => '/etc/default/grub',
line => 'GRUB_TIMEOUT_STYLE=countdown',
match => '^GRUB_HIDDEN_TIMEOUT=',
} ~> Exec['update-grub']
file_line{'grub_config_6':
ensure => absent,
path => '/etc/default/grub',
line => 'GRUB_HIDDEN_TIMEOUT_QUIET',
match => '^GRUB_HIDDEN_TIMEOUT_QUIET=',
match_for_absence => true,
} ~> Exec['update-grub']
exec{'update-grub':
path => $::path,
command => 'update-grub',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment