Skip to content

Commit

Permalink
Merge branch 'master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
miya0001 committed Jan 7, 2016
2 parents 9659be2 + 46ef326 commit ed25c0c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

require 'yaml'

Vagrant.require_version '>= 1.5'
Vagrant.require_version '>= 1.8'

Vagrant.configure(2) do |config|

Expand Down Expand Up @@ -64,10 +64,11 @@ Vagrant.configure(2) do |config|
end

if Vagrant.has_plugin?('vagrant-vbguest')
config.vbguest.auto_update = false
config.vbguest.auto_update = true
end

config.vm.provider :virtualbox do |vb|
vb.linked_clone = _conf['linked_clone']
vb.name = _conf['hostname']
vb.memory = _conf['memory'].to_i
vb.cpus = _conf['cpus'].to_i
Expand Down Expand Up @@ -109,7 +110,8 @@ Vagrant.configure(2) do |config|
'mbstring.internal_encoding' => 'UTF-8',
'date.timezone' => 'UTC',
'short_open_tag' => 'Off',
'session.save_path' => '/tmp'
'session.save_path' => '/tmp',
'upload_max_filesize' => '32M'
}
},
:mysql => {
Expand Down
5 changes: 5 additions & 0 deletions provision/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,8 @@ group: vagrant
# phpenv
#
php_version: default

#
# Linked Clone for Vagrant v1.8
#
linked_clone: false

0 comments on commit ed25c0c

Please sign in to comment.