Skip to content

Commit

Permalink
Merge pull request buildbot#515 from drnic/vagrant_overrides
Browse files Browse the repository at this point in the history
Allow reuse of existing vagrant boxes by env variables
  • Loading branch information
Solomon Hykes committed May 4, 2013
2 parents c3a5dd7 + 04f41eb commit e392b7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :

BOX_NAME = "ubuntu"
BOX_URI = "http://files.vagrantup.com/precise64.box"
BOX_NAME = ENV['BOX_NAME'] || "ubuntu"
BOX_URI = ENV['BOX_URI'] || "http://files.vagrantup.com/precise64.box"
PPA_KEY = "E61D797F63561DC6"

Vagrant::Config.run do |config|
Expand Down

0 comments on commit e392b7e

Please sign in to comment.