diff --git a/REFERENCE.md b/REFERENCE.md index 7527a0c..0872871 100644 --- a/REFERENCE.md +++ b/REFERENCE.md @@ -9,6 +9,10 @@ * [`grubby`](#grubby): Manage bootloader configuration via grubby * [`grubby::config`](#grubbyconfig): Applies desired configuration via grubby +### Defined types + +* [`grubby::kernel_opt`](#grubbykernel_opt): Applies kernel parameter configuration via grubby + ### Data types * [`Grubby::Kernel_Opts`](#grubbykernel_opts): Parameters for each kernel argument @@ -73,7 +77,7 @@ Default value: ``undef`` ##### `kernel_opts` -Data type: `Optional[Hash[String[1], Grubby::Kernel_Opts]]` +Data type: `Optional[Hash[Pattern[/\S+/], Grubby::Kernel_Opts]]` The kernel options that should be managed for the default kernel @@ -98,6 +102,76 @@ Default value: `{}` This is a private class, that performs the necessary changes via grubby +## Defined types + +### `grubby::kernel_opt` + +} + +#### Examples + +##### Add Single Parameter + +```puppet +grubby::kernel_opt{'keyword':} +``` + +##### Delete a Single Parameter + +```puppet +grubby::kernel_opt{'selinix': + ensure => 'absent', +} +``` + +##### Add Parameter with Value + +```puppet +grubby::kernel_opt{'memsize': + value => '22', +``` + +#### Parameters + +The following parameters are available in the `grubby::kernel_opt` defined type: + +* [`opt`](#opt) +* [`ensure`](#ensure) +* [`value`](#value) +* [`scope`](#scope) + +##### `opt` + +Data type: `String[1]` + +Kernel option + +Default value: `$name` + +##### `ensure` + +Data type: `Enum['present', 'absent']` + +add or delete kernel option + +Default value: `'present'` + +##### `value` + +Data type: `Optional[Variant[String[1],Integer]]` + +Value of kernel option + +Default value: ``undef`` + +##### `scope` + +Data type: `Variant[Enum['DEFAULT','ALL'],Pattern[/^TITLE=.+$/]]` + +Which kernels to apply parameters to + +Default value: `'DEFAULT'` + ## Data types ### `Grubby::Kernel_Opts` diff --git a/manifests/config.pp b/manifests/config.pp index d8dbb42..daa27cb 100644 --- a/manifests/config.pp +++ b/manifests/config.pp @@ -19,34 +19,9 @@ } $grubby::kernel_opts.each | $opt, $fields | { - $scope = $fields[scope] ? { - Undef => 'DEFAULT', - default => $fields[scope], - } - - $_opt = $fields[value] ? { - Undef => $opt, - default => "${opt}=${fields[value]}", - } - - case $fields[ensure] { - Undef, 'present': { - exec { "Ensure ${_opt} kernel option is set for ${scope}": - command => "/sbin/grubby --update-kernel=${scope} --args=${_opt}", - path => ['/bin','/usr/bin'], - unless => "/sbin/grubby --info=${scope} | grep ^args= | test -z \"$(grep -wv ${_opt})\"", - } - } - 'absent': { - exec { "Ensure ${opt} kernel option is absent for ${scope}": - command => "/sbin/grubby --update-kernel=${scope} --remove-args=${opt}", - path => ['/bin','/usr/bin'], - unless => "/sbin/grubby --info=${scope} | grep ^args= | test -z \"$(grep -w ${opt}\"", - } - } - default: { - fail('Incorect value of field ensure for $opt kernel option!') - } + grubby::kernel_opt{$opt: + *=> $fields, } } + } diff --git a/manifests/kernel_opt.pp b/manifests/kernel_opt.pp new file mode 100644 index 0000000..dfed442 --- /dev/null +++ b/manifests/kernel_opt.pp @@ -0,0 +1,52 @@ +# @summary Applies kernel parameter configuration via grubby +# +# @example Add Single Parameter +# grubby::kernel_opt{'keyword':} +# +# @example Delete a Single Parameter +# grubby::kernel_opt{'selinix': +# ensure => 'absent', +# } +# +# @example Add Parameter with Value +# grubby::kernel_opt{'memsize': +# value => '22', +# } +# +# @param opt Kernel option +# @param ensure add or delete kernel option +# @param value Value of kernel option +# @param scope Which kernels to apply parameters to +# +define grubby::kernel_opt ( + Pattern[/\S+/] $opt = $name, + Enum['present', 'absent'] $ensure = 'present', + Variant[Enum['DEFAULT','ALL'],Pattern[/^TITLE=.+$/]] $scope = 'DEFAULT', + Optional[Variant[String[1],Integer]] $value = undef, +){ + + $_opt = $value ? { + Undef => $opt, + default => "${opt}=${value}", + } + + case $ensure { + 'present': { + exec { "Ensure ${_opt} kernel option is set for ${scope}": + command => "/sbin/grubby --update-kernel=${scope} --args=${_opt}", + path => ['/bin','/usr/bin'], + unless => "/sbin/grubby --info=${scope} | grep ^args= | test -z \"$(grep -wv ${_opt})\"", + } + } + 'absent': { + exec { "Ensure ${opt} kernel option is absent for ${scope}": + command => "/sbin/grubby --update-kernel=${scope} --remove-args=${opt}", + path => ['/bin','/usr/bin'], + unless => "/sbin/grubby --info=${scope} | grep ^args= | test -z \"$(grep -w ${opt})\"", + } + } + default: { + fail('Incorect value of field ensure for ensure parameter!') + } + } +} diff --git a/spec/defines/kernel_opt_spec.rb b/spec/defines/kernel_opt_spec.rb new file mode 100644 index 0000000..5bc2cac --- /dev/null +++ b/spec/defines/kernel_opt_spec.rb @@ -0,0 +1,59 @@ +require 'spec_helper' + +describe 'grubby::kernel_opt' do + let(:title) { 'foo' } + + on_supported_os.each do |os, os_facts| + context "on #{os}" do + let(:facts) do + os_facts + end + + it { is_expected.to compile } + context 'with no parameters' do + it do + is_expected.to contain_exec('Ensure foo kernel option is set for DEFAULT').with( + command: '/sbin/grubby --update-kernel=DEFAULT --args=foo', + unless: '/sbin/grubby --info=DEFAULT | grep ^args= | test -z "$(grep -wv foo)"', + ) + end + context 'with value and scope set' do + let(:params) do + { value: 'bar', scope: 'ALL' } + end + + it do + is_expected.to contain_exec('Ensure foo=bar kernel option is set for ALL').with( + command: '/sbin/grubby --update-kernel=ALL --args=foo=bar', + unless: '/sbin/grubby --info=ALL | grep ^args= | test -z "$(grep -wv foo=bar)"', + ) + end + end + end + context 'with ensure absent parameters' do + let(:params) do + { ensure: 'absent' } + end + + it do + is_expected.to contain_exec('Ensure foo kernel option is absent for DEFAULT').with( + command: '/sbin/grubby --update-kernel=DEFAULT --remove-args=foo', + unless: '/sbin/grubby --info=DEFAULT | grep ^args= | test -z "$(grep -w foo)"', + ) + end + context 'with value and scope set' do + let(:params) do + super().merge(value: 'bar', scope: 'ALL') + end + + it do + is_expected.to contain_exec('Ensure foo kernel option is absent for ALL').with( + command: '/sbin/grubby --update-kernel=ALL --remove-args=foo', + unless: '/sbin/grubby --info=ALL | grep ^args= | test -z "$(grep -w foo)"', + ) + end + end + end + end + end +end diff --git a/spec/shared_examples/config.rb b/spec/shared_examples/config.rb index 20954bb..8428dcc 100644 --- a/spec/shared_examples/config.rb +++ b/spec/shared_examples/config.rb @@ -12,5 +12,26 @@ unless: '/sbin/grubby --default-kernel | grep -q /boot/vmlinuz-2.6.32-431.23.3.el6.x86_64') end end + context 'when kernel_opts is defined' do + let(:params) do + { kernel_opts: { 'foo' => { + 'ensure' => 'present', 'value' => 'ball', 'scope' => 'ALL' + }, + 'bar' => { + 'ensure' => 'present', 'value' => 10 + } } } + end + + it { + is_expected.to contain_grubby__kernel_opt('foo').with(ensure: 'present', + value: 'ball', + scope: 'ALL') + } + it { + is_expected.to contain_grubby__kernel_opt('bar').with(ensure: 'present', + value: 10, + scope: 'DEFAULT') + } + end end end