28 lines
538 B
YAML
28 lines
538 B
YAML
---
|
|
|
|
- name: Installing libdi-php for PHP 7.1
|
|
apt:
|
|
name: "{{ item }}"
|
|
state: latest
|
|
update_cache: yes
|
|
cache_valid_time: 3600
|
|
with_items:
|
|
- libdi-php
|
|
|
|
- name: Remove other di-module references
|
|
file:
|
|
dest: /etc/php/7.1/cli/conf.d/20-di.ini
|
|
state: absent
|
|
|
|
- name: Template libdi-php config to php extension dir
|
|
template:
|
|
src: "di.ini.j2"
|
|
dest: "{{ item }}"
|
|
mode: "0644"
|
|
owner: root
|
|
group: root
|
|
with_items:
|
|
- "/etc/php/7.1/cli/conf.d/10-di.ini"
|
|
notify:
|
|
- restart php7.1-fpm
|