Commit c9ce531591353f6a59286c0a93f1c983010930c2
1 parent
e8fa0f50
Exists in
staging
and in
39 other branches
rails: use a Debian Jessie vagrant box by default
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
Vagrantfile
| ... | ... | @@ -3,7 +3,7 @@ |
| 3 | 3 | |
| 4 | 4 | VAGRANTFILE_API_VERSION = "2" |
| 5 | 5 | Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| |
| 6 | - config.vm.box = ENV.fetch('VAGRANT_BOX', "debian-wheezy") | |
| 6 | + config.vm.box = ENV.fetch('VAGRANT_BOX', "debian/jessie64") | |
| 7 | 7 | config.vm.network :forwarded_port, host: 3000, guest: 3000 |
| 8 | 8 | config.vm.provision :shell do |shell| |
| 9 | 9 | shell.inline = 'su vagrant -c /vagrant/script/vagrant' | ... | ... |