1577afd85c
The default C7 box gets old, I'd like to have Alpha be a focus for development. Let's use sshfs if available. Closes: #516 Approved by: jlebon
40 lines
1.2 KiB
Ruby
40 lines
1.2 KiB
Ruby
# vi: set ft=ruby :
|
|
|
|
# See `HACKING.md` for more information on this.
|
|
|
|
Vagrant.configure(2) do |config|
|
|
|
|
if ENV['VAGRANT_BOX']
|
|
config.vm.box = ENV['VAGRANT_BOX']
|
|
else
|
|
config.vm.box = "centosah/7alpha"
|
|
config.vm.box_url = 'https://ci.centos.org/artifacts/sig-atomic/centos-continuous/images-alpha/cloud/latest/images/centos-atomic-host-7-vagrant-libvirt.box'
|
|
end
|
|
|
|
config.vm.hostname = "centosah-dev"
|
|
|
|
config.vm.define "vmcheck" do |vmcheck|
|
|
end
|
|
|
|
if Vagrant.has_plugin?('vagrant-sshfs')
|
|
config.vm.synced_folder ".", "/var/home/vagrant/sync", type: 'sshfs'
|
|
end
|
|
# turn off the default rsync in the vagrant box (the vm tooling does this
|
|
# for use already)
|
|
config.vm.synced_folder ".", "/home/vagrant/sync", disabled: true
|
|
|
|
config.vm.provider "libvirt" do |libvirt, override|
|
|
libvirt.cpus = 2
|
|
libvirt.memory = 2048
|
|
libvirt.driver = 'kvm'
|
|
end
|
|
|
|
config.vm.provision "ansible" do |ansible|
|
|
ansible.playbook = "vagrant/setup.yml"
|
|
ansible.host_key_checking = false
|
|
ansible.raw_ssh_args = ['-o ControlMaster=no']
|
|
# for debugging the ansible playbook
|
|
#ansible.raw_arguments = ['-v']
|
|
end
|
|
end
|