[COOK-2499] Do not clone service resource

Signed-off-by: Seth Vargo <sethvargo@gmail.com>
This commit is contained in:
Julian C. Dunn 2013-09-25 20:39:06 -04:00 committed by Seth Vargo
parent a1f685680c
commit 5e06cdc9a0

View File

@ -24,11 +24,6 @@ if node['postfix']['use_procmail']
package "procmail"
end
service "postfix" do
supports :status => true, :restart => true, :reload => true
action :enable
end
case node['platform_family']
when "rhel", "fedora"
service "sendmail" do
@ -56,5 +51,6 @@ end
end
service "postfix" do
action :start
supports :status => true, :restart => true, :reload => true
action [:enable, :start]
end