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:
parent
5b97169e50
commit
623eab68ef
@ -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)
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user