16 lines
571 B
Puppet
16 lines
571 B
Puppet
# confdroid_prometheus::main::config.pp
|
|
# Module name: confdroid_prometheus
|
|
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
|
# @summary Class manages the module logic for the confdroid_prometheus module.
|
|
##############################################################################
|
|
class confdroid_prometheus::main::config (
|
|
) inherits confdroid_prometheus::params {
|
|
include confdroid_prometheus::main::service
|
|
|
|
exec { 'systemd-daemon-reload':
|
|
command => '/bin/systemctl daemon-reload',
|
|
path => ['/bin', '/usr/bin'],
|
|
refreshonly => true,
|
|
}
|
|
}
|