This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# This is a Vagrantfile to automatically provision a local BCPC cluster. | |
require 'openssl' # used to validate CA certificates | |
require 'uri' # used to parse the local mirror if one is given | |
Vagrant.require_version ">= 1.7.0" | |
ENV['VAGRANT_DEFAULT_PROVIDER'] = 'virtualbox' |
NewerOlder