Puppet Class: jetty::service

Inherits:
jetty
Defined in:
manifests/service.pp

Overview

class: jetty::service - This class manages the Jetty service



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

class jetty::service inherits jetty {

  service { 'Jetty Service':
    ensure     => $jetty::service_ensure,
    name       => 'jetty',
    enable     => true,
    hasstatus  => true,
    hasrestart => true,
  }
}