From 5797a7a6437ad04b39b1bec7985b0e46d38889b2 Mon Sep 17 00:00:00 2001 From: Roger Luethi Date: Wed, 18 Jun 2014 12:14:07 +0200 Subject: [PATCH] Add localrc configuration file The localrc file is read by osbash/wbatch and a few guest-side scripts. It can be used to override variables used by the scripts. Most notably, this is the place to select the Linux distribution to use for the base disk or the VM cluster. All variables have default values; localrc may be left empty. Partial-Bug: 1312764 Implements: blueprint openstack-training-labs Change-Id: I38e305ac40eda062bda4433178b7aed3c9e8e694 --- labs/config/localrc | 15 +++++++++++++++ labs/localrc | 0 2 files changed, 15 insertions(+) create mode 100644 labs/config/localrc delete mode 100644 labs/localrc diff --git a/labs/config/localrc b/labs/config/localrc new file mode 100644 index 00000000..e95586fd --- /dev/null +++ b/labs/config/localrc @@ -0,0 +1,15 @@ +# Set this if you already have the install ISO, but in a location other +# than IMG_DIR (which defaults to TOP_DIR/img) +#INSTALL_ISO=/data/iso/ubuntu/ubuntu-12.04.4-server-amd64.iso + +# VM_PROXY will be used by apt/yum once the operating system is +# installed (i.e. for software updates and installation). It is only +# used to speed up the process. If you have to use a proxy to connect +# to the Internet, this is not sufficient. +#VM_PROXY="http://192.168.178.20:3128" + +# Options: ubuntu-12.04.4-server-amd64 (default), fedora-20-x86_64 +#DISTRO=ubuntu-12.04.4-server-amd64 +#DISTRO=fedora-20-x86_64 + +# vim: set ai ts=4 sw=4 et ft=sh: diff --git a/labs/localrc b/labs/localrc deleted file mode 100644 index e69de29b..00000000