diff options
Diffstat (limited to 'fuel-plugin-vsperf/vagrant')
-rw-r--r-- | fuel-plugin-vsperf/vagrant/README.md | 13 | ||||
-rw-r--r-- | fuel-plugin-vsperf/vagrant/Vagrantfile | 28 | ||||
-rwxr-xr-x | fuel-plugin-vsperf/vagrant/build_fuel_plugin.sh | 14 |
3 files changed, 0 insertions, 55 deletions
diff --git a/fuel-plugin-vsperf/vagrant/README.md b/fuel-plugin-vsperf/vagrant/README.md deleted file mode 100644 index c979e783..00000000 --- a/fuel-plugin-vsperf/vagrant/README.md +++ /dev/null @@ -1,13 +0,0 @@ -<!--- -This work is licensed under a Creative Commons Attribution 4.0 International License. -http://creativecommons.org/licenses/by/4.0 ---> - -Build fuel plugin -================== - -The plugin build support Ubuntu 14.04 - -1. sudo apt-get install vagrant virtualbox - -2. vagrant up diff --git a/fuel-plugin-vsperf/vagrant/Vagrantfile b/fuel-plugin-vsperf/vagrant/Vagrantfile deleted file mode 100644 index 78128e8b..00000000 --- a/fuel-plugin-vsperf/vagrant/Vagrantfile +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright (c) 2016-2017 Intel corporation. -# -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Apache License, Version 2.0 -# which accompanies this distribution, and is available at -# http://www.apache.org/licenses/LICENSE-2.0 - -# # -*- mode: ruby -*- -# vi: set ft=ruby : - -# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! -VAGRANTFILE_API_VERSION = "2" - -Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| - - config.vm.box = "trusty-server-cloudimg-amd64" - config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box" - - config.vm.define "fuel" do | h | - h.vm.host_name = "fuel" - h.vm.provision :shell, :inline => "/vagrant/build_fuel_plugin.sh" - h.vm.synced_folder "../..", "/vswitchperf" - h.vm.provider :virtualbox do |v| - v.customize ["modifyvm", :id, "--memory", 4096] - v.customize ["modifyvm", :id, "--cpus", 4] - end - end -end diff --git a/fuel-plugin-vsperf/vagrant/build_fuel_plugin.sh b/fuel-plugin-vsperf/vagrant/build_fuel_plugin.sh deleted file mode 100755 index cd3e6226..00000000 --- a/fuel-plugin-vsperf/vagrant/build_fuel_plugin.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -# Copyright (c) 2016-2017 Intel corporation. -# -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Apache License, Version 2.0 -# which accompanies this distribution, and is available at -# http://www.apache.org/licenses/LICENSE-2.0 - -sudo apt-get update -y -sudo apt-get install -y ruby-dev rubygems-integration python-pip rpm createrepo dpkg-dev -sudo gem install fpm -sudo pip install fuel-plugin-builder -fpb --debug --build /vswitchperf/fuel-plugin-vsperf |