From ab3f50ba42a187efcadb7ef1acf8290ad29fb737 Mon Sep 17 00:00:00 2001 From: Roger Luethi Date: Tue, 17 Jun 2014 12:29:25 +0200 Subject: [PATCH] Add osbash/Vagrant-specific configuration files This changeset adds two configuration files, one for osbash and one for Vagrant. They contain the names of the VirtualBox shared folder and the shell user. For osbash, there are some additional variables. These config files could presumably be moved outside of the config directory or disappear entirely, because there seems to be little benefit in having these variables configurable. Partial-Bug: 1312764 Implements: blueprint openstack-training-labs Change-Id: Ieb0928debee463ef7211dae679ac38a6702ad084 --- labs/config/deploy.osbash | 19 +++++++++++++++++++ labs/config/deploy.vagrant | 8 ++++++++ 2 files changed, 27 insertions(+) create mode 100644 labs/config/deploy.osbash create mode 100644 labs/config/deploy.vagrant diff --git a/labs/config/deploy.osbash b/labs/config/deploy.osbash new file mode 100644 index 00000000..f03a78c4 --- /dev/null +++ b/labs/config/deploy.osbash @@ -0,0 +1,19 @@ +# Used by osbash.sh and guest scripts + +: ${VM_BASE_NAME:=base} + +# Port used for ssh forwarding when building base disk +: ${VM_BASE_SSH_PORT:=2229} + +: ${OSBASH_LIB_DIR:=$LIB_DIR/osbash} +: ${OSBASH_SCRIPTS_DIR:=$SCRIPTS_DIR/osbash} + +: ${TEMPLATE_DIR:=$LIB_DIR/osbash/templates} + +# Name of VirtualBox shared folder +: ${SHARE_NAME:=osbash} + +# Note: shell user name and password are set in preseed.cfg +VM_SHELL_USER=osbash + +# vim: set ai ts=4 sw=4 et ft=sh: diff --git a/labs/config/deploy.vagrant b/labs/config/deploy.vagrant new file mode 100644 index 00000000..71fedf9f --- /dev/null +++ b/labs/config/deploy.vagrant @@ -0,0 +1,8 @@ +# Used by guest scripts + +# Name of VirtualBox shared folder +SHARE_NAME=vagrant + +VM_SHELL_USER=vagrant + +# vim: set ai ts=4 sw=4 et ft=sh: