
We are seeing issues from pip provider using latest. Use pinned version for now to get past the issue. Change-Id: I65feaaca83cf0c96f6bcc82aac20b1215c055ec0
19 lines
321 B
Puppet
19 lines
321 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 {
|
|
include ::pip
|
|
|
|
package {'germqtt':
|
|
ensure => '0.1.0',
|
|
provider => 'pip',
|
|
require => Class['pip'],
|
|
}
|
|
}
|