From 2f53d5b6647e56b22862a2e30bc03123afd89ce8 Mon Sep 17 00:00:00 2001 From: Edoardo Putti Date: Fri, 28 Oct 2016 18:55:57 +0200 Subject: [PATCH] remove version from package php-fpm --- roles/nginx/tasks/main.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/nginx/tasks/main.yaml b/roles/nginx/tasks/main.yaml index 35718a4..96c4b95 100644 --- a/roles/nginx/tasks/main.yaml +++ b/roles/nginx/tasks/main.yaml @@ -12,14 +12,14 @@ state: absent notify: restart nginx -- name: install php5-fpm +- name: install php-fpm apt: name: "{{ item }}" state: present update_cache: yes cache_valid_time: 3600 with_items: - - php5-fpm + - php-fpm when: php | bool notify: - restart nginx