From 3e1896637d7bc4b1450dc3cb3d15790458511458 Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Thu, 11 Aug 2016 11:24:53 +0200
Subject: [PATCH] Make PECL installation more tolerant

---
 tasks/php.yml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/tasks/php.yml b/tasks/php.yml
index c21f4fd..794a6a2 100644
--- a/tasks/php.yml
+++ b/tasks/php.yml
@@ -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:
-- 
GitLab