Skip to content
This repository has been archived by the owner on Feb 13, 2023. It is now read-only.

Commit

Permalink
Issue #609: Clean up some references to / usage of PHP < 7.
Browse files Browse the repository at this point in the history
  • Loading branch information
geerlingguy committed May 12, 2016
1 parent 8a527fc commit 2607ff0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/acquia/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This directory contains example configuration changes for the default Drupal VM

- Ubuntu 12.04.5 LTS
- Apache 2.2.22
- PHP 5.5.23
- PHP 5.6.21
- MySQL/Percona 5.5.24
- Apache Solr 4.5.1

Expand Down
6 changes: 3 additions & 3 deletions provisioning/tasks/init-debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@

- name: Add repository for PHP 5.5.
apt_repository: repo='ppa:ondrej/php5'
when: php_version == "5.5" and ansible_distribution == "Ubuntu"
when: php_version == "5.5" and ansible_distribution == "Ubuntu" and ansible_distribution_version == "12.04"

- name: Add repository for PHP 5.6.
apt_repository: repo='ppa:ondrej/php5-5.6'
when: php_version == "5.6" and ansible_distribution == "Ubuntu"
when: php_version == "5.6" and ansible_distribution == "Ubuntu" and ansible_distribution_version != "16.04"

- name: Add repository for PHP 7.0.
apt_repository: repo='ppa:ondrej/php'
when: php_version == "7.0" and ansible_distribution == "Ubuntu"
when: php_version == "7.0" and ansible_distribution == "Ubuntu" and ansible_distribution_version != "16.04"

- name: Define php_xhprof_html_dir.
set_fact:
Expand Down

0 comments on commit 2607ff0

Please sign in to comment.