Puppet Class: postfix::install
- Defined in:
- manifests/install.pp
Overview
Class: postfix::install
Manges the postfix package. Not intended to be called directly
Authors
-
Justin Lambert <jlambert@letsevenup.com>
Copyright
Copyright 2013 EvenUp.
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'manifests/install.pp', line 15
class postfix::install (
$tls = $::postfix::tls,
$tls_package = $::postfix::tls_package,
) {
package { 'sendmail':
ensure => absent,
require => Package['postfix'],
}
package { 'postfix':
ensure => latest,
notify => Class['postfix::service'],
}
if ( $postfix::install::tls and $postfix::install::tls_package ) {
package { $postfix::install::tls_package:
ensure => latest,
}
}
}
|