Browse Source

Add missing dependency in base bundle for PHP

Emmanuel Bouthenot 11 years ago
parent
commit
bc75096cdc
1 changed files with 2 additions and 1 deletions
  1. 2 1
      roles/webserver/tasks/php.yml

+ 2 - 1
roles/webserver/tasks/php.yml

@@ -1,11 +1,12 @@
 - name: Install common PHP dependencies
   action: ${ansible_pkg_mgr} pkg=${item} state=installed update_cache=yes
   with_items:
-    - php-mime-type
     - php5-cli
+    - php5-curl
     - php5-gd
     - php5-intl
     - php5-mcrypt
+    - php-mime-type
   when_boolean: ${with_php}
 
 - name: Instal local PHP configuration