From f49670691bc4b517427ad81cda09c7f01eb95449 Mon Sep 17 00:00:00 2001 From: Dan Wendlandt Date: Sat, 12 May 2012 18:40:13 -0700 Subject: [PATCH] Remove reference to QUANTUM_OVS_CONF_FILE before it is created. This was introduced by commit 962c25eb7421094c6fc1ef7edb56fe1da69a972b, but it completely breaks a clean install of devstack with OVS. Note: the author was probably attempting to get devstack working in a multi-node environment. There is another branch under submission for that already. Change-Id: Ie2cbcbd58e0d0babf9b0af0db9aa879703a2aeb9 --- stack.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/stack.sh b/stack.sh index c6f5d1e39d..a379796d91 100755 --- a/stack.sh +++ b/stack.sh @@ -1053,7 +1053,6 @@ if is_service_enabled q-svc; then if is_service_enabled mysql; then mysql -u$MYSQL_USER -p$MYSQL_PASSWORD -e 'DROP DATABASE IF EXISTS ovs_quantum;' mysql -u$MYSQL_USER -p$MYSQL_PASSWORD -e 'CREATE DATABASE IF NOT EXISTS ovs_quantum CHARACTER SET utf8;' - sudo sed -i -e "s/^sql_connection =.*$/sql_connection = mysql:\/\/$MYSQL_USER:$MYSQL_PASSWORD@$MYSQL_HOST\/ovs_quantum?charset=utf8/g" $QUANTUM_OVS_CONFIG_FILE else echo "mysql must be enabled in order to use the $Q_PLUGIN Quantum plugin." exit 1