diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-09-17 11:04:37 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-09-17 11:04:37 -0300 |
commit | 057da2275b6da85889b115a84de32605a15baefb (patch) | |
tree | 613f0a5f3c44bf202140a44e32c3908b76c4c793 /manifests | |
parent | 483d5999272b70cb230717df0d5f9e410bd47b4b (diff) | |
download | puppet-mail-057da2275b6da85889b115a84de32605a15baefb.tar.gz puppet-mail-057da2275b6da85889b115a84de32605a15baefb.tar.bz2 |
Fixing service definitions at mail::amavisd
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/amavisd.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/amavisd.pp b/manifests/amavisd.pp index 4bf17f7..36c329c 100644 --- a/manifests/amavisd.pp +++ b/manifests/amavisd.pp @@ -11,7 +11,7 @@ class mail::amavisd { group => root, mode => 0644, source => "puppet:///modules/mail/amavisd/05-domain_id", - notify => Service['amavisd'], + notify => Service['amavis'], } file { "/etc/amavis/conf.d/15-content_filter_mode": @@ -20,7 +20,7 @@ class mail::amavisd { group => root, mode => 0644, source => "puppet:///modules/mail/amavisd/15-content_filter_mode", - notify => Service['amavisd'], + notify => Service['amavis'], } file { "/etc/amavis/conf.d/20-debian_defaults": @@ -29,7 +29,7 @@ class mail::amavisd { group => root, mode => 0644, source => "puppet:///modules/mail/amavisd/20-debian_defaults", - notify => Service['amavisd'], + notify => Service['amavis'], } group { 'amavis': |