aboutsummaryrefslogtreecommitdiffstats
path: root/modules/postfix/manifests/init.pp
blob: e13e86b5b293d82d0b488e40a1a7e67cd0dbdd2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class postfix {
    package { ['postfix', 'nail']: }

    service { 'postfix':
        subscribe => Package['postfix'],
    }

    file { '/etc/postfix/main.cf':
        require => Package['postfix'],
        content => '',
        notify  => Service['postfix'],
    }
}