Drop unused config.pp file

Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2015-10-13 11:07:33 -04:00
parent 3ecc9dc5e1
commit 9746337125
1 changed files with 0 additions and 30 deletions

View File

@ -1,30 +0,0 @@
# == Class: grafyaml::config
#
# This class is used to manage arbitrary grafyaml configurations.
#
# === Parameters
#
# [*grafyaml_config*]
# (optional) Allow configuration of arbitrary grafyaml configurations.
# The value is an hash of grafyaml_config resources. Example:
# { 'DEFAULT/foo' => { value => 'fooValue'},
# 'DEFAULT/bar' => { value => 'barValue'}
# }
# In yaml format, Example:
# grafyaml_config:
# DEFAULT/foo:
# value: fooValue
# DEFAULT/bar:
# value: barValue
#
# NOTE: The configuration MUST NOT be already handled by this module
# or Puppet catalog compilation will fail with duplicate resources.
#
class grafyaml::config (
$grafyaml_config = {},
) {
validate_hash($grafyaml_config)
create_resources('grafyaml_config', $grafyaml_config)
}