Puppet Class: icingaweb2::module::reporting::service

Defined in:
manifests/module/reporting/service.pp

Summary

Manage the reporting service.

Overview



6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'manifests/module/reporting/service.pp', line 6

class icingaweb2::module::reporting::service {
  assert_private()

  if $icingaweb2::module::reporting::manage_service {
    $ensure = $icingaweb2::module::reporting::service_ensure
    $enable = $icingaweb2::module::reporting::service_enable

    service { 'icinga-reporting':
      ensure => $ensure,
      enable => $enable,
    }
  }
}