Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install PHP 7.1 #91

Merged
merged 2 commits into from
Feb 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions crayfish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@
- hosts: crayfish
become: yes

vars:
php_version: "7.1"

roles:
- name: geerlingguy.repo-remi
when: ansible_os_family == "RedHat"
- geerlingguy.apache
- geerlingguy.php-versions
- geerlingguy.php
- geerlingguy.git
- geerlingguy.composer
Expand Down
3 changes: 3 additions & 0 deletions requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
- src: geerlingguy.apache
version: 3.0.0

- src: geerlingguy.php-versions
version: 2.1.5

- src: geerlingguy.php
version: 3.6.0

Expand Down
6 changes: 3 additions & 3 deletions vars/Debian.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---

php_packages_extra:
- libapache2-mod-php7.0
- php7.0-mysql
- php7.0-pgsql
- libapache2-mod-php7.1
- php7.1-mysql
- php7.1-pgsql
4 changes: 4 additions & 0 deletions webserver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@
- hosts: webserver
become: yes

vars:
php_version: "7.1"

roles:
- name: geerlingguy.repo-remi
when: ansible_os_family == "RedHat"
- geerlingguy.apache
- geerlingguy.php-versions
- geerlingguy.php
- geerlingguy.php-mysql
- geerlingguy.git
Expand Down