You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2020/09/18 18:06:08 UTC

[airavata] 05/09: Ansible: for PGA, enable php5.6 module on Ubuntu 18

This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata.git

commit 0476158b68b4a26fcccdf4c2533433cfc99d972f
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Fri Mar 13 17:53:11 2020 -0400

    Ansible: for PGA, enable php5.6 module on Ubuntu 18
---
 dev-tools/ansible/roles/pga/tasks/install_deps_Ubuntu_18.yml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/dev-tools/ansible/roles/pga/tasks/install_deps_Ubuntu_18.yml b/dev-tools/ansible/roles/pga/tasks/install_deps_Ubuntu_18.yml
index cf14489..3750d01 100644
--- a/dev-tools/ansible/roles/pga/tasks/install_deps_Ubuntu_18.yml
+++ b/dev-tools/ansible/roles/pga/tasks/install_deps_Ubuntu_18.yml
@@ -43,6 +43,12 @@
     path: /usr/bin/php5.6
   become: yes
 
+- name: enable apache rewrite
+  command: a2enmod {{ item }}
+  with_items:
+    - php5.6
+  become: yes
+
 # this just creates symlinks in /etc/php5/{apache2,cli}/conf.d/20-mcryp.ini to /etc/php5/modules-avail/mcrypt.ini
 - name: enable mcrypt
   command: phpenmod mcrypt