mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
a12444be21
Vagrant environment to do GStreamer development, debugging and testing.
15 lines
525 B
Ruby
15 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
|