Puppet Class: confdroid_prometheus::main::install
- Inherits:
- confdroid_prometheus::params
- Defined in:
- manifests/main/install.pp
Summary
Class install binaries for the confdroid_prometheus module.Overview
confdroid_prometheus::main::install.pp Module name: confdroid_prometheus Author: 12ww1160 (12ww1160@confdroid.com)
6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'manifests/main/install.pp', line 6
class confdroid_prometheus::main::install (
) inherits confdroid_prometheus::params {
require confdroid_prometheus::main::yumrepo
if $manage_prometheus == true {
package { $reqpackage_prom:
ensure => $pkg_ensure,
}
}
if $manage_node_exporter == true {
package { $reqpackage_ne:
ensure => $pkg_ensure,
}
}
}
|