# == Class: openvpn::config # # This class maintains the openvpn service # # # === Examples # # This class should not be directly invoked # # === Authors # # * Raffael Schmid # * John Kinsella # * Justin Lambert # class openvpn::service { service { 'openvpn': ensure => running, enable => true, hasrestart => true, hasstatus => true; } }