Puppet Class: sendmail::makeall
- Defined in:
-
manifests/makeall.pp
Summary
Rebuild all config files for the Sendmail MTA using a Makefile
Overview
6
7
8
9
10
11
12
13
14
15
16
17
|
# File 'manifests/makeall.pp', line 6
class sendmail::makeall {
include sendmail::params
include sendmail::package
exec { 'sendmail::makeall':
command => $sendmail::params::configure_command,
refreshonly => true,
path => '/bin:/sbin:/usr/bin:/usr/sbin',
require => Class['sendmail::package'],
before => Class['sendmail::service'],
}
}
|