From 4c9beb03099782c037ecceec3c583f06e10c82a1 Mon Sep 17 00:00:00 2001 From: Roger Luethi Date: Tue, 17 Jun 2014 13:57:33 +0200 Subject: [PATCH] VirtualBox-specific configuration file This file contains settings that are specific to VirtualBox: the type of NIC to use for networking, the location of the VBoxManage binary, and the name of the VirtualBox VM group to use for the VMs. Partial-Bug: 1312764 Implements: blueprint openstack-training-labs Change-Id: I19bbf6c5314dc75704d7e2c15bb7607d6d11f279 --- labs/config/provider.virtualbox | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 labs/config/provider.virtualbox diff --git a/labs/config/provider.virtualbox b/labs/config/provider.virtualbox new file mode 100644 index 00000000..39480269 --- /dev/null +++ b/labs/config/provider.virtualbox @@ -0,0 +1,18 @@ +# VirtualBox specific settings; used by osbash + +# Type of NIC to use for network interfaces, one of: +# 82540EM for Intel PRO/1000 MT Desktop +# 82543GC for Intel PRO/1000 T Server +# 82545EM for Intel PRO/1000 MT Server +# Am79C970A for PCnet-PCI II +# Am79C973 for PCnet-FAST III +# virtio for Paravirtualized network +: ${NICTYPE:=virtio} + +# Location of VBoxManage binary +: ${VBM_EXE:=$(which VBoxManage)} + +# VirtualBox VM group +: ${VM_GROUP:=oslabs} + +# vim: set ai ts=4 sw=4 et ft=sh: