# -*- mode: ruby -*- # vi: set ft=ruby : # This is a set of different vagrant setups that are primarily useful for package # building and testing. The techniques here were borrowed from the Git Fusion # team. VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| #Centos6 VM config.vm.define 'centos6.5' do |vagrant| vagrant.vm.hostname = 'centos6.5' vagrant.vm.box = "grtjn/centos-6.5" vagrant.vm.network :private_network, ip: '192.168.2.75' vagrant.vm.synced_folder '.', '/home/vagrant/hws' vagrant.vm.provider 'virtualbox' do |vb| vb.memory = 4096 end vagrant.vm.provision "shell", path: "centos6.sh" end end