diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2013-06-27 17:03:15 -0300 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2013-06-27 17:03:15 -0300 | 
| commit | 3a200132e45b5ecb547e87aa082f127f5cd0fd63 (patch) | |
| tree | f24135636834b54fdcf0e67c7904a93882dc719d /manifests/sympa.pp | |
| parent | 6af3f3f188444ae365383e4c4f6be23af967495c (diff) | |
| download | puppet-mail-3a200132e45b5ecb547e87aa082f127f5cd0fd63.tar.gz puppet-mail-3a200132e45b5ecb547e87aa082f127f5cd0fd63.tar.bz2  | |
Ensure old virtual and transport regexps are removed (2)
Diffstat (limited to 'manifests/sympa.pp')
| -rw-r--r-- | manifests/sympa.pp | 10 | 
1 files changed, 6 insertions, 4 deletions
diff --git a/manifests/sympa.pp b/manifests/sympa.pp index bb20b81..fd65e7e 100644 --- a/manifests/sympa.pp +++ b/manifests/sympa.pp @@ -105,13 +105,15 @@ class mail::sympa(    mail::sympa::domain { "${subdomain}.${domain}": }    # TODO: remove in the future -  postfix::transport_regexp_snippet { "firma_transport_regexp": -    ensure => absent, +  postfix::transport_regexp_snippet { "sympa_transport_regexp": +    ensure  => absent, +    content => template('mail/sympa/transport_regexp.erb'),    }    # TODO: remove in the future -  postfix::virtual_regexp_snippet { "firma_virtual_regexp": -    ensure => absent, +  postfix::virtual_regexp_snippet { "sympa_virtual_regexp": +    ensure  => absent, +    content => template('mail/sympa/virtual_regexp.erb'),    }    postfix::config {  | 
