Puppet Class: openvpn::service

Defined in:
manifests/service.pp

Summary

This class maintains the openvpn service.

Overview



4
5
6
7
8
9
10
11
12
13
# File 'manifests/service.pp', line 4

class openvpn::service {
  if $openvpn::manage_service and !$openvpn::namespecific_rclink {
    service { 'openvpn':
      ensure     => running,
      enable     => true,
      hasrestart => true,
      hasstatus  => true,
    }
  }
}