From baf710fc324c9f0422a3fd6b2c3d41292233acbf Mon Sep 17 00:00:00 2001 From: staticsafe Date: Fri, 13 Jan 2017 02:49:33 +0000 Subject: [PATCH] PHP-FPM daemon should be in a started state. --- ubuntu/roles/php/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ubuntu/roles/php/tasks/main.yml b/ubuntu/roles/php/tasks/main.yml index 0dd9cf9..2f6c09f 100644 --- a/ubuntu/roles/php/tasks/main.yml +++ b/ubuntu/roles/php/tasks/main.yml @@ -1,5 +1,5 @@ --- - name: Install php-fpm apt: pkg=php-fpm state=latest -- name: Stop the php-fpm daemon for now and ensure it starts on boot - service: name=php7.0-fpm state=stopped enabled=yes +- name: Start PHP-FPM daemon, and make sure it is started on boot + service: name=php7.0-fpm state=started enabled=yes