Puppet Class: icingaweb2::module::x509::service

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

Summary

Manage the x509 job scheduler.

Overview



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

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

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

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