From daa4fc256b16d90d437df1590e8f64fe8f88967f Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Mon, 2 Apr 2012 07:03:40 -0700 Subject: [PATCH] Updated openstack script to print a note about the default network Signed-off-by: Steven Dake --- tools/openstack | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tools/openstack b/tools/openstack index feac86f3..430af6ac 100755 --- a/tools/openstack +++ b/tools/openstack @@ -17,7 +17,7 @@ then echo "" echo "start - Starts OpenStack" echo "stop - Stops OpenStack" - echo "install - Installs a fresh OpenStack system with Keystone from your repos" + echo "install - Installs a fresh OpenStack system with Keystone from RPM repostories" echo "erase - permanently destroys an existing installation of OpenStack" fi @@ -132,9 +132,13 @@ EOF sudo rm -rf /var/log/{glance,nova,swift,keystone}/* os_start sleep 1 - echo IF ERRORS RETURNED HERE THE INSTALL DID NOT WORK PROPERLY + echo "Installation Complete." + echo "Testing nova and glance. If any errors are displayed, the install failed." nova flavor-list glance index + echo "note: This tool does not create a network. Creating a network" + echo "depends on your environment. An example network create operation" + echo "sudo nova-manage network create demonet 10.0.0.0/24 1 256 --bridge=demonetbr0" } case $action in -- 2.45.2