Puppet Class: mailcatcher::service

Defined in:
manifests/service.pp

Overview

class mailcatcher::service



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

class mailcatcher::service {
  service {'mailcatcher':
    ensure     => 'running',
    provider   => $mailcatcher::params::provider,
    hasstatus  => true,
    hasrestart => true,
    require    => Class['mailcatcher::config'],
  }
}