3
0
Files
confdroid_prometheus/manifests/main/config.pp
2025-12-04 14:16:06 +01:00

16 lines
529 B
Puppet

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