Puppet Class: sendmail::makeall
- Defined in:
- manifests/makeall.pp
Overview
Class: sendmail::makeall
Rebuild all config files for the Sendmail MTA using a provided Makefile
Parameters:
None.
Requires:
Nothing.
Sample Usage:
class { 'sendmail::makeall': }
18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'manifests/makeall.pp', line 18
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'],
}
}
|