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

Commit

Permalink
Merge pull request #1095 from oxyc/1093
Browse files Browse the repository at this point in the history
Issue #1093: Install Apache 2.4.9+ on Ubuntu 14.04
  • Loading branch information
geerlingguy authored Dec 30, 2016
2 parents 665a12f + 26b9cd8 commit af0a101
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions provisioning/tasks/init-debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@
service: name=ufw state=stopped
when: ansible_distribution == "Ubuntu" and {{ drupalvm_disable_ufw_firewall | default(true) }}

- name: Add repository for Apache 2.4 on Ubuntu 12.
- name: Add repository for Apache 2.4.9+ on Ubuntu 12 and 14.
apt_repository: repo='ppa:ondrej/apache2'
when: ansible_distribution_release == "precise" and ansible_distribution == "Ubuntu"
when: >
(ansible_distribution_release == "precise" or ansible_distribution_release == "trusty") and
ansible_distribution == "Ubuntu"
- name: Add repository for PHP 5.5, 5.6, 7.0 or 7.1.
apt_repository: repo='ppa:ondrej/php'
Expand Down

0 comments on commit af0a101

Please sign in to comment.