php/tasks/main.yml
2019-04-15 13:38:47 +02:00

20 lines
464 B
YAML

---
- name: Ensure php is installed.
pacman:
name:
- php
- php-fpm
state: present
become: yes
- name: Ensure php-fpm is started and enabled to start at boot.
service: name=php-fpm state=started enabled=yes
become: yes
- name: enable php extetion
become: true
replace:
dest: /etc/php/php.ini
regexp: "^;extension={{item}}$"
replace: "extension={{item}}"
with_items: "{{php_extention_enable}}"
notify: reload_php_fpm