diff --git a/manifests/plugin/hdm.pp b/manifests/plugin/hdm.pp new file mode 100644 index 000000000..eadb20576 --- /dev/null +++ b/manifests/plugin/hdm.pp @@ -0,0 +1,6 @@ +# @summary Install the Hiera Data Manager (HDM) plugin +# +class foreman::plugin::hdm { + foreman::plugin { 'hdm': + } +} diff --git a/spec/classes/plugin/hdm_spec.rb b/spec/classes/plugin/hdm_spec.rb new file mode 100644 index 000000000..c70ab3481 --- /dev/null +++ b/spec/classes/plugin/hdm_spec.rb @@ -0,0 +1,5 @@ +require 'spec_helper' + +describe 'foreman::plugin::hdm' do + include_examples 'basic foreman plugin tests', 'hdm' +end