72cd9532b3
Training Labs folder was kept inside the training-guides folder since the project was sheltered under openStack manuals project. To keep the content more organized, moving the folder to appropriate location would be necessary. blueprint openstack-training-labs blueprint training-manuals Change-Id: I4007c3fb64e76cda798ffe6cb68557f462ad07ff
29 lines
1.3 KiB
Bash
Executable File
29 lines
1.3 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# About: Set up dependencies for VirtualBox sandbox meant for OpenStack Labs.
|
|
#
|
|
# Contact: pranav@aptira.com
|
|
# Copyright: Aptira @aptira,aptira.com
|
|
# License: Apache Software License (ASL) 2.0
|
|
###############################################################################
|
|
# #
|
|
# Carry out tasks for setting up multi node environment for OpenStack #
|
|
# #
|
|
###############################################################################
|
|
|
|
echo "Multi node"
|
|
echo "This script is to be implemented later on. Please refer to single node for now."
|
|
uname=root
|
|
pass=cloud
|
|
vm_id="d57da699-ff1e-4b24-b270-78093a2b25a9"
|
|
|
|
# Download the VM from repo/storage space on the Internet
|
|
|
|
# Register the VM and start the VM
|
|
# Execute the single node script to configure the network
|
|
#vboxmanage guestcontrol $vm_id execute --image "/bin/ls" --username $uname --password $pass --wait-exit --wait-stdout
|
|
|
|
# Execute the single node install scripts and take snapshots after each script
|
|
# vboxmanage guestcontrol $vm_id execute --image "/bin/ls" --username $uname --password $pass --wait-exit --wait-stdout
|
|
# vboxmanage snapshot $vm_id take "test_snapshot" --description "test snapshot -- igore :D"
|