
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
30 lines
1.0 KiB
Bash
30 lines
1.0 KiB
Bash
#!/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
|
|
###############################################################################
|
|
# #
|
|
# This script will install Horizon related packages. #
|
|
# #
|
|
###############################################################################
|
|
|
|
# Note: No Internet access required -- packages downloaded by PreInstall.sh
|
|
echo "Internet connection is not required for this script to run"
|
|
SCRIPT_DIR=$(cd $(dirname "$0") && pwd)
|
|
|
|
install_horizon() {
|
|
|
|
# 1. Install Horizon
|
|
apt-get install -y openstack-dashboard memcached
|
|
|
|
# 2. Restart apache2 and memcached
|
|
service apache2 restart
|
|
service memcached restart
|
|
|
|
echo " You are done with the OpenStack installation "
|
|
}
|
|
install_horizon
|