
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
28 lines
764 B
Bash
28 lines
764 B
Bash
#!/bin/bash
|
|
#
|
|
# 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
|
|
###############################################################################
|
|
# #
|
|
# This script will configure Cinder volumes #
|
|
# #
|
|
###############################################################################
|
|
|
|
echo -n "Enter location of disk to be used for formatting: "
|
|
read $disk
|
|
# Assuming /dev/sdb for now
|
|
|
|
cat <<EOF | fdisk /dev/sdb
|
|
n
|
|
p
|
|
1
|
|
|
|
t
|
|
8e
|
|
w
|
|
EOF
|
|
partprobe
|