add php role

This commit is contained in:
vincent 2019-04-14 16:49:30 +02:00
parent 8bc03f07a6
commit 09fd76d1ef
3 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1 @@
php_extention_enable: []

View File

@ -0,0 +1,4 @@
---
- name: reload_php_fpm
service: name=php-fpm state=restarted
become: yes

View File

@ -0,0 +1,20 @@
---
- 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
lineinfile:
dest: /etc/php/php.ini
regexp: ";extension={{item}}"
line: "extension={{item}}"
with_items: "{{php_extention_enable}}"
notify: reload_php_fpm