diff options
author | Ed Warnicke <eaw@cisco.com> | 2016-05-06 12:58:31 -0500 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2016-05-07 12:58:55 +0000 |
commit | 30aff24e10610923d419c8f905e545f2c31d9c8c (patch) | |
tree | b74104b1575986b93ef4a847b2bb4fb9b952978b /build-root/vagrant/Vagrantfile | |
parent | 393490e0f5b9791105616bde88024586ba5c0cc5 (diff) |
Small improvement to vagrant file
Change-Id: Ia85ed0ef55cb5da118289667d7b217d8890d487e
Signed-off-by: Ed Warnicke <eaw@cisco.com>
Diffstat (limited to 'build-root/vagrant/Vagrantfile')
-rw-r--r-- | build-root/vagrant/Vagrantfile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/build-root/vagrant/Vagrantfile b/build-root/vagrant/Vagrantfile index 4c720de678c..06063e3585b 100644 --- a/build-root/vagrant/Vagrantfile +++ b/build-root/vagrant/Vagrantfile @@ -11,11 +11,11 @@ Vagrant.configure(2) do |config| config.vm.box = "puppetlabs/ubuntu-14.04-64-nocm" end - config.vm.provision :shell, :path => "update.sh" - config.vm.provision :shell, :path => "build.sh", :args => "/vpp vagrant" - config.vm.provision :shell, :path => "install.sh", :args => "/vpp" - config.vm.provision :shell, :path => "clearinterfaces.sh" - config.vm.provision :shell, :path => "run.sh" + config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"update.sh") + config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"build.sh"), :args => "/vpp vagrant" + config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"install.sh"), :args => "/vpp" + config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"clearinterfaces.sh") + config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"run.sh") # Add .gnupg dir in so folks can sign patches # Note, as gnupg puts socket files in that dir, we have |