gstreamer/vagrant/Vagrantfile
Zaheer Abbas Merali a12444be21 vagrant: initial commit
Vagrant environment to do GStreamer development, debugging and
testing.
2013-10-26 03:03:55 -07:00

16 lines
525 B
Ruby

# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "saucy64"
config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/saucy/current/saucy-server-cloudimg-amd64-vagrant-disk1.box"
config.vm.network :private_network, ip: "192.168.33.11"
config.vm.synced_folder "../..", "/gst"
config.vm.provision :ansible do |ansible|
ansible.playbook = "playbook.yml"
ansible.inventory_file = "ansible_hosts"
ansible.verbose = true
ansible.ask_sudo_pass = true
end
end