Puppet Class: exim::service

Inherits:
exim
Defined in:
manifests/service.pp

Summary

This class manages the exim service

Overview



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

class exim::service inherits exim {
  if $::exim::manage_service {
    ::service{$::exim::exim_service:
      ensure => running,
    }
  }
}