diff options
Diffstat (limited to 'modules')
-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'], } } |