# -*- 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| #General Centos7 VM config.vm.define 'centos7' do |vagrant| vagrant.vm.hostname = 'centos7' vagrant.vm.box = 'centos/7' vagrant.vm.network :private_network, ip: '192.168.2.76' vagrant.vm.synced_folder '.', '/home/vagrant/hws' vagrant.vm.provider 'virtualbox' do |vb| vb.memory = 4096 end vagrant.vm.provision "shell", path: "centos7.sh" end end