
This adds the basic framework for running germqtt somewhere. It's not tested at all yet, but lays the groundwork of how this will work.
17 lines
303 B
Puppet
17 lines
303 B
Puppet
# == Class: germqtt
|
|
#
|
|
# Full description of class germqtt here.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*sample_parameter*]
|
|
# Explanation of what this parameter affects and what it defaults to.
|
|
#
|
|
class germqtt {
|
|
package {'germqtt':
|
|
ensure => latest,
|
|
provider => 'pip',
|
|
require => Class['pip'],
|
|
}
|
|
}
|