diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..c5feb6c --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,34 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +# NOTE: override this via the option --provider {provider_name} +ENV["VAGRANT_DEFAULT_PROVIDER"] = "virtualbox" + +Vagrant.configure(2) do |config| + operating_systems = %w{ centos72 } + + operating_systems.each do |os| + config.vm.define os do |system| + system.vm.box = "boxcutter/#{os}" + + $script = <