Files

16 lines
571 B
ObjectPascal
Raw Permalink Normal View History

2025-12-13 13:25:01 +01:00
# confdroid_prometheus::main::config.pp
# Module name: confdroid_prometheus
2025-06-13 14:33:21 +02:00
# Author: Arne Teuke (arne_teuke@confdroid.com)
2025-12-13 13:25:01 +01:00
# @summary Class manages the module logic for the confdroid_prometheus module.
2025-06-13 14:33:21 +02:00
##############################################################################
2025-12-13 13:25:01 +01:00
class confdroid_prometheus::main::config (
) inherits confdroid_prometheus::params {
include confdroid_prometheus::main::service
2025-12-04 14:16:06 +01:00
exec { 'systemd-daemon-reload':
command => '/bin/systemctl daemon-reload',
path => ['/bin', '/usr/bin'],
refreshonly => true,
}
2025-06-13 14:33:21 +02:00
}