diff options
author | Michael Scherer <misc@mageia.org> | 2012-01-16 15:25:16 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-01-16 15:25:16 +0000 |
commit | 1b2b2a90b7c7a442adbc80ada47d83250aef8123 (patch) | |
tree | 9baf93129d925a2b217e34314219d069e782f2f5 /modules/postfix/manifests/init.pp | |
parent | aa02fde73e324e388a09c3d174e045d967243809 (diff) | |
download | puppet-1b2b2a90b7c7a442adbc80ada47d83250aef8123.tar puppet-1b2b2a90b7c7a442adbc80ada47d83250aef8123.tar.gz puppet-1b2b2a90b7c7a442adbc80ada47d83250aef8123.tar.bz2 puppet-1b2b2a90b7c7a442adbc80ada47d83250aef8123.tar.xz puppet-1b2b2a90b7c7a442adbc80ada47d83250aef8123.zip |
clean postfix module
Diffstat (limited to 'modules/postfix/manifests/init.pp')
-rw-r--r-- | modules/postfix/manifests/init.pp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/postfix/manifests/init.pp b/modules/postfix/manifests/init.pp index 748e9861..4796f6f2 100644 --- a/modules/postfix/manifests/init.pp +++ b/modules/postfix/manifests/init.pp @@ -3,15 +3,13 @@ class postfix { package { [postfix,nail]: } service { postfix: - ensure => running, - subscribe => [ Package['postfix']], - path => "/etc/init.d/postfix" + subscribe => Package['postfix'], } file { '/etc/postfix/main.cf': require => Package["postfix"], content => "", - notify => [Service['postfix']], + notify => Service['postfix'], } } |