evoadmin-web: download sid package for php-log
Some checks reported errors
continuous-integration/drone/pr Build encountered an error
continuous-integration/drone/push Build is passing

This commit is contained in:
Benoît S. 2019-07-04 17:16:43 +02:00
parent 4e02e8ee94
commit a7ef7be973

View file

@ -12,6 +12,19 @@
- php-pear
when: ansible_distribution_major_version | version_compare('10', '>=')
# /!\ Warning, this is a temporary hack
- include_role:
name: remount-usr
# /!\ Warning, this is a temporary hack
- name: Install PHP packages from sid (Debian 10 and later)
apt:
deb: '{{ item }}'
state: present
with_items:
- 'http://mirror.evolix.org/debian/pool/main/p/php-log/php-log_1.12.9-2_all.deb'
when: ansible_distribution_major_version | version_compare('10', '>=')
- name: Install PHP packages (stretch)
apt:
name: '{{ item }}'