We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 197d53d commit 523c405Copy full SHA for 523c405
1 file changed
stack.sh
@@ -13,6 +13,9 @@
13
# Sanity Check
14
# ============
15
16
+# Start our timer
17
+START_TIME=`python -c "import time; print time.time()"`
18
+
19
# Warn users who aren't on natty, but allow them to override check and attempt
20
# installation with ``FORCE=yes ./stack``
21
if ! grep -q natty /etc/lsb-release; then
@@ -514,3 +517,11 @@ if [[ "$ENABLED_SERVICES" =~ "key" ]]; then
514
517
echo "keystone is serving at http://$HOST_IP:5000/v2.0/"
515
518
echo "examples on using novaclient command line is in exercise.sh"
516
519
fi
520
521
+# Summary
522
+# =======
523
524
+# End our timer and give a timing summary
525
+END_TIME=`python -c "import time; print time.time()"`
526
+ELAPSED=`python -c "print $END_TIME - $START_TIME"`
527
+echo "stack.sh completed in $ELAPSED seconds."
0 commit comments