diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-06-27 16:50:33 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-06-27 16:50:33 -0300 |
commit | 962b4a437bda287e1b435f887ee4784584e67085 (patch) | |
tree | 219c8be575d578ef2c6f0b688818e813be99f1a6 /manifests/sympa | |
parent | f9f925230cee5c41f77357b7b1c8925e4a0caf7c (diff) | |
download | puppet-mail-962b4a437bda287e1b435f887ee4784584e67085.tar.gz puppet-mail-962b4a437bda287e1b435f887ee4784584e67085.tar.bz2 |
Avoid duplicate definitions
Diffstat (limited to 'manifests/sympa')
-rw-r--r-- | manifests/sympa/domain.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/sympa/domain.pp b/manifests/sympa/domain.pp index 7da9a89..8cc74c6 100644 --- a/manifests/sympa/domain.pp +++ b/manifests/sympa/domain.pp @@ -1,11 +1,11 @@ define mail::sympa::domain() { $subdomain = $name - postfix::transport_regexp_snippet { 'sympa_transport_regexp': + postfix::transport_regexp_snippet { "sympa_transport_regexp-${name}": content => template('mail/sympa/transport_regexp.erb'), } - postfix::virtual_regexp_snippet { 'sympa_virtual_regexp': + postfix::virtual_regexp_snippet { "sympa_virtual_regexp-${name}": content => template('mail/sympa/virtual_regexp.erb'), } } |