Puppet Class: openntpd::service

Inherits:
openntpd
Defined in:
manifests/service.pp

Overview



1
2
3
4
5
6
7
8
# File 'manifests/service.pp', line 1

class openntpd::service inherits openntpd {
  if $openntpd::service_manage {
    service { 'openntpd':
      name   => $openntpd::service_name,
      ensure => $openntpd::service_ensure,
    }
  }
}