blob: c969bd7ea1cb2b650b8b9f3b4f29c8b3eec17c65 [file] [log] [blame]
Rouzbahan Rashidi-Tabrizi663f01a2016-11-17 11:39:02 -05001# -*- mode: ruby -*-
2# vi: set ft=ruby :
3
4Vagrant.configure(2) do |config|
5
6 if (/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM) != nil
7 config.vm.synced_folder "../", "/voltha", mount_options: ["dmode=700,fmode=600"]
8 else
9 config.vm.synced_folder "../", "/voltha"
10 end
11
Rouzbahan Rashidi-Tabrizi54e3e292016-11-29 14:32:50 -050012 config.vm.define "voltha-base" do |d|
Rouzbahan Rashidi-Tabrizi663f01a2016-11-17 11:39:02 -050013 d.ssh.forward_agent = true
Zsolt Haraszti29d10af2016-12-10 10:38:32 -080014 d.vm.box = "ubuntu/xenial"
Rouzbahan Rashidi-Tabrizi663f01a2016-11-17 11:39:02 -050015 d.vm.hostname = "voltha"
16 d.vm.network "private_network", ip: "10.100.198.220"
17 #d.vm.network "public_network"
18 d.vm.provision :shell, path: "../ansible/scripts/bootstrap_ansible.sh"
19 d.vm.provision :shell, inline: "PYTHONUNBUFFERED=1 ansible-playbook /voltha/ansible/voltha.yml -c local"
Rouzbahan Rashidi-Tabrizi7b1bab92016-11-21 14:28:50 -050020 d.vm.provision :shell, inline: "cd /voltha/vagrant-base && make install-protoc"
Rouzbahan Rashidi-Tabrizi663f01a2016-11-17 11:39:02 -050021 #d.vm.provision :shell, path: "./test_script.sh"
22 d.vm.provider "virtualbox" do |v|
23 v.name = "voltha-base"
24 v.memory = 4096
25 end
26 end
27
28 config.ssh.shell = "bash -c 'BASH_ENV=/etc/profile exec bash'"
29
30 if Vagrant.has_plugin?("vagrant-cachier")
31 config.cache.scope = :box
32 end
33
34end