Skip to content
Snippets Groups Projects
Commit 3e189663 authored by jurgenhaas's avatar jurgenhaas
Browse files

Make PECL installation more tolerant

parent 989e34e9
No related branches found
No related tags found
No related merge requests found
......@@ -22,12 +22,14 @@
when: php_hold_version
- name: "PHP | Install PECL packages"
shell: 'pecl install imagick-3.3.0'
shell: 'pecl install --soft imagick-3.3.0'
when: php_version|default('5.5') != '7'
ignore_errors: true
- name: "PHP | Install PECL packages"
shell: 'pecl install oauth'
shell: 'pecl install --soft oauth'
when: php_version|default('5.5') == '7'
ignore_errors: true
- name: "PHP | Ensure Apache config directory"
file:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment