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
Evangelos Foutras 578b781966
Capitalize the handler name in handler invocations
Fixes: 26f289b72bfb ("Capitalize the first letter of all task names")
2022-08-29 21:46:39 +03:00

17 lines
419 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