blob: 9f22d164c1cebaad4a20f672cb3db83ba3eed604 [file] [log] [blame]
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
if (/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM) != nil
config.vm.synced_folder "../../..", "/cord", mount_options: ["dmode=700,fmode=600"]
else
config.vm.synced_folder "../../..", "/cord"
end
config.vm.define "voltha" do |d|
d.vm.box = "voltha/voltha-base"
d.vm.hostname = "voltha"
d.vm.network "private_network", ip: "10.100.198.220"
d.vm.provision :shell, inline: "cd /cord/incubator/voltha && source env.sh && chmod 777 /tmp/fluentd"
d.vm.provider "virtualbox" do |v|
v.name = "voltha"
end
end
config.ssh.shell = "bash -c 'BASH_ENV=/etc/profile exec bash'"
if Vagrant.has_plugin?("vagrant-cachier")
config.cache.scope = :box
end
end