Browse Source

remove version from package php-fpm

phabricator
Edoardo Putti 8 years ago
parent
commit
2f53d5b664
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      roles/nginx/tasks/main.yaml

+ 2
- 2
roles/nginx/tasks/main.yaml View File

@ -12,14 +12,14 @@
state: absent state: absent
notify: restart nginx notify: restart nginx
- name: install php5-fpm
- name: install php-fpm
apt: apt:
name: "{{ item }}" name: "{{ item }}"
state: present state: present
update_cache: yes update_cache: yes
cache_valid_time: 3600 cache_valid_time: 3600
with_items: with_items:
- php5-fpm
- php-fpm
when: php | bool when: php | bool
notify: notify:
- restart nginx - restart nginx


Loading…
Cancel
Save