Skip to content
This repository has been archived by the owner on Oct 26, 2022. It is now read-only.

Commit

Permalink
Merge pull request #16 from palantirnet/drupalbox-0.2.2
Browse files Browse the repository at this point in the history
Updates for the 0.2.2 drupalbox release.
  • Loading branch information
becw authored Nov 18, 2016
2 parents e352c26 + 1b2ca88 commit f6426eb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion conf/vagrant/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Vagrant.configure(2) do |config|
config.vm.define "#{project}" do |box|

box.vm.box = "palantir/drupalbox"
box.vm.box_version = ">= 0.1.1, < 1.0.0"
box.vm.box_version = ">= 0.2.3, < 1.0.0"

box.vm.provider "vmware_fusion" do |v|
v.vmx["memsize"] = "2048"
Expand Down
12 changes: 6 additions & 6 deletions conf/vagrant/provisioning/roles/php/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
regexp='memory_limit'
line='memory_limit = {{ php_ini_memory_limit }}'
with_items:
- /etc/php5/apache2/php.ini
- /etc/php5/cli/php.ini
- /etc/php/5.6/apache2/php.ini
- /etc/php/5.6/cli/php.ini
tags: PHP

- name: PHP | Enable PHP error display
Expand All @@ -15,8 +15,8 @@
regexp='^{{ item.key }}'
line='{{ item.key }} = {{ item.value }}'
with_items:
- { file: '/etc/php5/apache2/php.ini', key: 'error_reporting', value: "{{ php_ini_error_reporting }}" }
- { file: '/etc/php5/apache2/php.ini', key: 'display_errors', value: "{{ php_ini_display_errors }}" }
- { file: '/etc/php5/cli/php.ini', key: 'error_reporting', value: "{{ php_ini_error_reporting }}" }
- { file: '/etc/php5/cli/php.ini', key: 'display_errors', value: "{{ php_ini_display_errors }}" }
- { file: '/etc/php/5.6/apache2/php.ini', key: 'error_reporting', value: "{{ php_ini_error_reporting }}" }
- { file: '/etc/php/5.6/apache2/php.ini', key: 'display_errors', value: "{{ php_ini_display_errors }}" }
- { file: '/etc/php/5.6/cli/php.ini', key: 'error_reporting', value: "{{ php_ini_error_reporting }}" }
- { file: '/etc/php/5.6/cli/php.ini', key: 'display_errors', value: "{{ php_ini_display_errors }}" }
tags: PHP

0 comments on commit f6426eb

Please sign in to comment.