From 42bdb6ca81b2e0049102d2856e96f5c32245c9c4 Mon Sep 17 00:00:00 2001 From: Dirk Gustke Date: Mon, 4 Jul 2016 10:53:32 +0200 Subject: [PATCH] avoid "start: Job is already running: php4-fpm" errors ... thus making it reboot and rerun proof (ubuntu issue) --- recipes/install.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/install.rb b/recipes/install.rb index ebb29aa..ad91118 100644 --- a/recipes/install.rb +++ b/recipes/install.rb @@ -53,5 +53,5 @@ provider service_provider if service_provider service_name php_fpm_service_name supports :start => true, :stop => true, :restart => true, :reload => true - action [ :enable, :start ] + action [ :enable, :restart ] end