Puppet Class: prometheus_cd::main::config

Inherits:
prometheus_cd::params
Defined in:
manifests/main/config.pp

Summary

Class manages the module logic for the prometheus_cd module.

Overview

prometheus_cd::main::config.pp Module name: prometheus_cd Author: Arne Teuke (arne_teuke@confdroid.com)



6
7
8
9
10
11
12
13
14
15
# File 'manifests/main/config.pp', line 6

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,
  }
}