Skip to content

Commit

Permalink
Create new type grubby::kernel_opt
Browse files Browse the repository at this point in the history
A new type is added

```puppet
grubby::kernel_opt{'foo':
  ensure => present,
  value  => 'bar',
  scope  => 'ALL',
}
```

The previous hash parameter `grubby::kernel_opts` is still valid
and now uses `grubby::kernel_opt` internally.

Motivation here is to increase flexibility of module allowing
kernel parameters to be added by other distinct modules.
  • Loading branch information
traylenator committed Mar 26, 2021
1 parent f163d2e commit bed1329
Show file tree
Hide file tree
Showing 5 changed files with 210 additions and 29 deletions.
76 changes: 75 additions & 1 deletion REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -73,7 +77,7 @@ Default value: ``undef``

##### <a name="kernel_opts"></a>`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
Expand All @@ -98,6 +102,76 @@ Default value: `{}`

This is a private class, that performs the necessary changes via grubby

## Defined types

### <a name="grubbykernel_opt"></a>`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)

##### <a name="opt"></a>`opt`

Data type: `String[1]`

Kernel option

Default value: `$name`

##### <a name="ensure"></a>`ensure`

Data type: `Enum['present', 'absent']`

add or delete kernel option

Default value: `'present'`

##### <a name="value"></a>`value`

Data type: `Optional[Variant[String[1],Integer]]`

Value of kernel option

Default value: ``undef``

##### <a name="scope"></a>`scope`

Data type: `Variant[Enum['DEFAULT','ALL'],Pattern[/^TITLE=.+$/]]`

Which kernels to apply parameters to

Default value: `'DEFAULT'`

## Data types

### <a name="grubbykernel_opts"></a>`Grubby::Kernel_Opts`
Expand Down
31 changes: 3 additions & 28 deletions manifests/config.pp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
}

}
52 changes: 52 additions & 0 deletions manifests/kernel_opt.pp
Original file line number Diff line number Diff line change
@@ -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!')
}
}
}
59 changes: 59 additions & 0 deletions spec/defines/kernel_opt_spec.rb
Original file line number Diff line number Diff line change
@@ -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
21 changes: 21 additions & 0 deletions spec/shared_examples/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit bed1329

Please sign in to comment.