From 2d7c346f0c8cefe622edc8fed47cc2782aeb9a9b Mon Sep 17 00:00:00 2001 From: "Daniel P. Berrange" Date: Thu, 22 Jan 2015 14:37:04 +0000 Subject: [PATCH] Exit when printing error about database config When finding no configured database, devstack prints a suitable error in the logs "No database enabled" but then just carries on running, as a result the developer is very unlikely to ever see the original error message. Change the 'echo' to a 'die' so that it stop immediately making the error message clearly visible. Change-Id: Ibd86bfcb5d4a3b90a1ee7a5bd637b01124e3a6ba --- stack.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack.sh b/stack.sh index 4602b0b7d8..b03cca8c51 100755 --- a/stack.sh +++ b/stack.sh @@ -606,7 +606,7 @@ function read_password { # The available database backends are listed in ``DATABASE_BACKENDS`` after # ``lib/database`` is sourced. ``mysql`` is the default. -initialize_database_backends && echo "Using $DATABASE_TYPE database backend" || echo "No database enabled" +initialize_database_backends && echo "Using $DATABASE_TYPE database backend" || die $LINENO "No database enabled" # Queue Configuration