blob: 56cbb1364616b1136d0b06226e075fc709d5b72d (
plain)
1
2
3
4
5
6
7
8
9
|
class dovecot::sql::mysql {
if $version == 2 {
package { 'dovecot-mysql':
ensure => installed,
before => [ File['/etc/dovecot-sql.conf'], File['/etc/dovecot-dict-sql.conf'] ];
}
}
}
|