Puppet Class: libreswan::service

Defined in:
manifests/service.pp

Summary

Ensure that the appropriate services are running.

Overview



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

class libreswan::service {
  assert_private()

  service { $libreswan::service_name:
    ensure     => running,
    enable     => true,
    hasstatus  => true,
    hasrestart => true,
  }
}