Showing with 19 additions and 1 deletion.
  1. +8 −0 CHANGELOG.md
  2. +5 −0 manifests/plugin/kernel_care.pp
  3. +1 −1 metadata.json
  4. +5 −0 spec/classes/plugin/kernel_care_spec.rb
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [22.1.0](https://github.com/theforeman/puppet-foreman/tree/22.1.0) (2022-12-14)

[Full Changelog](https://github.com/theforeman/puppet-foreman/compare/22.0.0...22.1.0)

**Implemented enhancements:**

- Refs [\#35800](https://projects.theforeman.org/issues/35800) - Add foreman\_kernel\_care plugin support [\#1099](https://github.com/theforeman/puppet-foreman/pull/1099) ([ekohl](https://github.com/ekohl))

## [22.0.0](https://github.com/theforeman/puppet-foreman/tree/22.0.0) (2022-11-03)

[Full Changelog](https://github.com/theforeman/puppet-foreman/compare/21.2.0...22.0.0)
Expand Down
5 changes: 5 additions & 0 deletions manifests/plugin/kernel_care.pp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Installs foreman_kernel_care plugin
class foreman::plugin::kernel_care {
foreman::plugin { 'kernel_care':
}
}
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "theforeman-foreman",
"version": "22.0.0",
"version": "22.1.0",
"author": "theforeman",
"summary": "Foreman server configuration",
"license": "GPL-3.0+",
Expand Down
5 changes: 5 additions & 0 deletions spec/classes/plugin/kernel_care_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
require 'spec_helper'

describe 'foreman::plugin::kernel_care' do
include_examples 'basic foreman plugin tests', 'kernel_care'
end