Skip to content
Snippets Groups Projects
Commit 780f941a authored by jurgenhaas's avatar jurgenhaas
Browse files

Make phpenmod and phpdismod available as symbolic link in PHP 5.3 environments

parent b80fcf9f
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,16 @@
- 'fpm'
when: php_version|default("5.5") == "7"
- name: "Link PhpEnMod for PHP 5.3"
file:
dest: '/usr/local/bin/php{{ item }}'
src: '/usr/sbin/php5{{ item }}'
state: 'link'
with_items:
- 'enmod'
- 'dismod'
when: php_version|default("5.5") == "5.3"
- name: 'PHP | Remember that this role had been run'
set_fact: role_php_completed=true
tags: always
......
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