Remove unused config.pp manifest

This commit removes the config.pp manifest which was from the
cookiecutter, but not used anywhere.

Change-Id: I51f735ea63c0f2bd26ce3d5ff1d46786e9b8bd6d
This commit is contained in:
Matthew Treinish 2016-07-27 11:35:53 -04:00
parent 5b97169e50
commit 623eab68ef
No known key found for this signature in database
GPG Key ID: FD12A0F214C9E177
1 changed files with 0 additions and 30 deletions

View File

@ -1,30 +0,0 @@
# == Class: mosquitto::config
#
# This class is used to manage arbitrary mosquitto configurations.
#
# === Parameters
#
# [*mosquitto_config*]
# (optional) Allow configuration of arbitrary mosquitto configurations.
# The value is an hash of mosquitto_config resources. Example:
# { 'DEFAULT/foo' => { value => 'fooValue'},
# 'DEFAULT/bar' => { value => 'barValue'}
# }
# In yaml format, Example:
# mosquitto_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 mosquitto::config (
$mosquitto_config = {},
) {
validate_hash($mosquitto_config)
create_resources('mosquitto_config', $mosquitto_config)
}