X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=test%2Ftools%2Ftools_vm%2FVagrantfile;fp=test%2Ftools%2Ftools_vm%2FVagrantfile;h=0000000000000000000000000000000000000000;hb=59e81c38620fa1b61e15771191e35771450b9499;hp=ce1865fd72599f730fe00064976d6f664a5a5df1;hpb=072f6e3a8d1bdf8f4c663843589c22d93ba07791;p=integration%2Ftest.git diff --git a/test/tools/tools_vm/Vagrantfile b/test/tools/tools_vm/Vagrantfile deleted file mode 100644 index ce1865fd72..0000000000 --- a/test/tools/tools_vm/Vagrantfile +++ /dev/null @@ -1,71 +0,0 @@ -# -*- mode: ruby -*- -# vi: set ft=ruby : - -# Set memory value (MB) and number of CPU cores here -$MEMORY = "2048" -$CPU = "2" - -# Initial Vagrant configuration -Vagrant.configure(2) do |config| - - # --------------------- - # Shared configurations - # --------------------- - - # Enables SSH X11 forwarding - config.ssh.forward_x11 = "true" - - # VirtualBox configuration - config.vm.provider "virtualbox" do |vb| - # Set RAM in MB - vb.memory = $MEMORY - # Set num CPU cores - vb.cpus = $CPU - end - - # --------------------------- - # Configuration for Fedora 20 - # --------------------------- - - # Multi-machine definition for Fedora - config.vm.define "fedora" do |fedora| - # Build Vagrant box based on Fedora 20 - fedora.vm.box = "chef/fedora-20" - # Set hostname of box - fedora.vm.hostname = "tools-fedora" - # Use shell provisioner to install additional packages - fedora.vm.provision "shell", path: "scripts/fedora.sh", privileged: "false" - - # Install OpenDaylight using its Puppet module - fedora.vm.provision "puppet" do |puppet| - puppet.module_path = ["modules"] - puppet.manifest_file = "odl_install.pp" - end - - # VirtualBox configuration specific to this box - fedora.vm.provider "virtualbox" do |vb| - # Name for guest machine - vb.name = "Integration Tools: Fedora 20" - end - end - - # ---------------------------------- - # Configuration for Ubuntu 14.04 LTS - # ---------------------------------- - - # Multi-machine definition for Ubuntu - config.vm.define "ubuntu" do |ubuntu| - # Build Vagrant box based on Ubuntu 14.04 - ubuntu.vm.box = "ubuntu/trusty64" - # Set hostname of box - ubuntu.vm.hostname = "tools-ubuntu" - # Use shell provisioner to install additional packages - ubuntu.vm.provision "shell", path: "scripts/ubuntu.sh" - - # VirtualBox configuration specific to this box - ubuntu.vm.provider "virtualbox" do |vb| - # Name for guest machine - vb.name = "Integration Tools: Ubuntu 14.04" - end - end -end