From a99e5c9b0e308aa5fa66591e5213243463313ba6 Mon Sep 17 00:00:00 2001 From: "Daniel P. Berrange" Date: Wed, 11 Feb 2015 17:25:32 +0000 Subject: [PATCH] Revert "Exit when printing error about database config" This reverts commit 2d7c346f0c8cefe622edc8fed47cc2782aeb9a9b. Not setting DATABASE_TYPE is not a fatal error since it is valid to create nodes which only run a subset of services, and so a database may not be needed. Change-Id: I7d957e628141ba333b6f38940b39845b18fba4df --- stack.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack.sh b/stack.sh index 3f97919e0e..c8905a7f2f 100755 --- a/stack.sh +++ b/stack.sh @@ -584,7 +584,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" || die $LINENO "No database enabled" +initialize_database_backends && echo "Using $DATABASE_TYPE database backend" || echo "No database enabled" # Queue Configuration