Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit 63b6226

Browse files
committed
Fix Fedora provisioning again
1 parent 1580bf3 commit 63b6226

File tree

1 file changed

+9
-2
lines changed
  • provisioning/ansible/roles/php/tasks

1 file changed

+9
-2
lines changed

provisioning/ansible/roles/php/tasks/main.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@
2525
- php5
2626
- php5-curl
2727
- php5-gd
28+
- php5-imagick
2829
- php5-json
30+
- php5-ldap
2931
- php5-xdebug
3032
notify:
3133
- restart apache2
@@ -37,14 +39,19 @@
3739
- php
3840
- php-bcmath
3941
- php-gd
42+
- php-ldap
4043
- php-pdo
44+
- php-pecl-imagick
4145
- php-pecl-xdebug
4246
notify:
4347
- restart apache2
4448
when: ansible_pkg_mgr == 'yum'
4549

46-
- name: yum install php-pecl-jsonc
47-
yum: name=php-pecl-jsonc state=present
50+
- name: yum install fedora
51+
yum: name={{ item }} state=present
52+
with_items:
53+
- php-pecl-jsonc
54+
- php-pecl-zip
4855
notify:
4956
- restart apache2
5057
when: ansible_distribution == 'Fedora'

0 commit comments

Comments
 (0)