Puppet Class: icingaweb2::module::vspheredb::service

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

Summary

Manage the vspheredb service.

Overview



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

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

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

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