diff options
author | Ed Warnicke <eaw@cisco.com> | 2016-05-01 20:33:53 -0500 |
---|---|---|
committer | Damjan Marion <damarion@cisco.com> | 2016-05-02 19:25:44 +0000 |
commit | efa7f9e6c2ee9fc68e87fb2cddd5f82842c4330e (patch) | |
tree | 9762795599ca516a0c29116aa02bc6e7a1a6ed12 /build-root/vagrant/Vagrantfile | |
parent | 3d5916dee601311c264a4aa1b24a6eeb9e36c58f (diff) |
Break out install.sh from build.sh
This is necessary because we are now using
build.sh for CI... and we shouldn't
install packages on CI boxes.
Change-Id: I68f7880dfc75bbc4aa278ab0765a43e3fb899f3d
Signed-off-by: Ed Warnicke <eaw@cisco.com>
Diffstat (limited to 'build-root/vagrant/Vagrantfile')
-rw-r--r-- | build-root/vagrant/Vagrantfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build-root/vagrant/Vagrantfile b/build-root/vagrant/Vagrantfile index 71b47686bdb..4c720de678c 100644 --- a/build-root/vagrant/Vagrantfile +++ b/build-root/vagrant/Vagrantfile @@ -13,6 +13,7 @@ Vagrant.configure(2) do |config| 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" |