From 5e06cdc9a07a8b007f9b549508599b12a0a2a44f Mon Sep 17 00:00:00 2001 From: "Julian C. Dunn" Date: Wed, 25 Sep 2013 20:39:06 -0400 Subject: [PATCH] [COOK-2499] Do not clone service resource Signed-off-by: Seth Vargo --- recipes/default.rb | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/recipes/default.rb b/recipes/default.rb index c418b96..cbdcc7c 100644 --- a/recipes/default.rb +++ b/recipes/default.rb @@ -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