summaryrefslogtreecommitdiff
path: root/manifests/centos.pp
blob: 7e7eefa9eb901718da5ed9627e64f4dea02e8c81 (plain)
1
2
3
4
5
6
7
8
9
10
11
class dovecot::centos inherits dovecot::base {
  file{'/etc/sysconfig/dovecot':
    source => [ "puppet:///modules/site_dovecot/sysconfig/${::fqdn}/dovecot",
                "puppet:///modules/site_dovecot/sysconfig/${dovecot::type}/dovecot",
                "puppet:///modules/site_dovecot/sysconfig/dovecot",
                "puppet:///modules/dovecot/sysconfig/dovecot" ],
    require => Package['dovecot'],
    notify => Service['dovecot'],
    owner => root, group => mail, mode => 0640;
  }
}