diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2017-06-22 01:51:45 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-06-22 01:51:45 +0000 |
commit | bbd60b6bddcf363d76c1dff34d21158caa18c0a1 (patch) | |
tree | 960d6f20254a5aa4e4c79ae74829e7d1b7b54d99 /fuel-plugin/vagrant/Vagrantfile | |
parent | 418b31051fb38881e3f18ad93d036878297e8ad7 (diff) | |
parent | a2ff61e74a7de5379dc2676d9e7b2b61bab809dc (diff) |
Merge "cleanup: remove fuel plugin since fuel@opnfv uses mcp"
Diffstat (limited to 'fuel-plugin/vagrant/Vagrantfile')
-rw-r--r-- | fuel-plugin/vagrant/Vagrantfile | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/fuel-plugin/vagrant/Vagrantfile b/fuel-plugin/vagrant/Vagrantfile deleted file mode 100644 index 271ff7937..000000000 --- a/fuel-plugin/vagrant/Vagrantfile +++ /dev/null @@ -1,21 +0,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", privileged: false - h.vm.synced_folder "../..", "/yardstick" - h.vm.provider :virtualbox do |v| - v.customize ["modifyvm", :id, "--memory", 4096] - v.customize ["modifyvm", :id, "--cpus", 4] - end - end -end |