1
1
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2025-01-18 08:06:16 +01:00
infrastructure/roles/php-fpm/tasks/main.yaml
Florian Pritz 79d2812249 php: Add iconv, gd, pdo_pgsql for kanboard
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2017-03-04 20:51:51 +01:00

18 lines
423 B
YAML

---
- name: install php-fpm
pacman: name=php-fpm,php-gd,php-pgsql state=present
- name: install php-fpm units
copy: >
src={{ item }} dest=/etc/systemd/system/{{ item }}
owner=root group=root mode=0644
with_items:
- php-fpm@.socket
- php-fpm@.service
notify: daemon reload
- name: configure default php.ini
template: >
src=php.ini.j2 dest=/etc/php/php.ini
owner=root group=root mode=0644