Puppet Class: example::service

Inherits:
example
Defined in:
manifests/service.pp

Overview



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

class example::service inherits example{

  notice('Running service.pp')

  service { 'httpd':

    require => Package['httpd'],
    ensure  => 'running',
    enable  => true,

  }

}