Puppet Class: dovecot::config
- Inherits:
- dovecot
- Defined in:
- manifests/config.pp
Overview
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'manifests/config.pp', line 1
class dovecot::config inherits dovecot {
concat { '/etc/dovecot/dovecot.conf':
ensure => 'present',
owner => 'root',
group => 'root',
mode => '0644',
}
concat::fragment{ '/etc/dovecot/dovecot.conf base':
target => '/etc/dovecot/dovecot.conf',
order => '00',
content => template("${module_name}/dovecotconf.erb"),
}
}
|