roles/php-fpm: Rename tags from php5-fpm to php-fpm

This commit is contained in:
Alan Orth 2016-04-15 13:27:51 +03:00
parent 8d4ee6f430
commit 904bb9c094

View File

@ -7,24 +7,24 @@
- php5-mysql - php5-mysql
- php5-gd - php5-gd
- php5-curl - php5-curl
tags: php5-fpm tags: php-fpm
- name: Copy php5-fpm pool config - name: Copy php5-fpm pool config
template: src=pool.conf.j2 dest=/etc/php5/fpm/pool.d/{{ item.domain_name }}.conf owner=root group=root mode=0644 template: src=pool.conf.j2 dest=/etc/php5/fpm/pool.d/{{ item.domain_name }}.conf owner=root group=root mode=0644
with_items: "{{ nginx_vhosts }}" with_items: "{{ nginx_vhosts }}"
when: nginx_vhosts is defined when: nginx_vhosts is defined
notify: restart php5-fpm notify: restart php5-fpm
tags: php5-fpm tags: php-fpm
- name: Remove default www pool - name: Remove default www pool
file: path=/etc/php5/fpm/pool.d/www.conf state=absent file: path=/etc/php5/fpm/pool.d/www.conf state=absent
notify: restart php5-fpm notify: restart php5-fpm
tags: php5-fpm tags: php-fpm
# re-configure php.ini # re-configure php.ini
- name: Update php.ini - name: Update php.ini
template: src=php.ini.j2 dest=/etc/php5/fpm/php.ini owner=root group=root mode=0644 template: src=php.ini.j2 dest=/etc/php5/fpm/php.ini owner=root group=root mode=0644
notify: restart php5-fpm notify: restart php5-fpm
tags: php5-fpm tags: php-fpm
# vim: set ts=2 sw=2: # vim: set ts=2 sw=2: