]> review.fuel-infra Code Review - openstack-build/heat-build.git/commitdiff
Updated openstack script to print a note about the default network
authorSteven Dake <sdake@redhat.com>
Mon, 2 Apr 2012 14:03:40 +0000 (07:03 -0700)
committerSteven Dake <sdake@redhat.com>
Mon, 2 Apr 2012 14:03:40 +0000 (07:03 -0700)
Signed-off-by: Steven Dake <sdake@redhat.com>
tools/openstack

index feac86f3c965c66fe031f20c88a81d2cee818d67..430af6ac5572a9abbcd69b742b4ee354746c72ec 100755 (executable)
@@ -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