commit | 0566f581c0f310384f42838c388f57234ed1d60e | [log] [tgz] |
---|---|---|
author | Yuli Shlosberg <ys9693@att.com> | Sun Nov 26 19:05:23 2017 +0200 |
committer | Michael Lando <ml636r@att.com> | Mon Nov 27 08:49:27 2017 +0000 |
tree | dd782da7ebd4ce591876865a564b9c1f65eb5e66 | |
parent | 4d8033eeb036943c05b3a5752b8f4cd4d705272f [diff] |
sync 1.1.0 to master Change-Id: I6e040f039895dd2ced55f95824473946b226fb5d Issue-ID: SDC-707 Signed-off-by: Yuli Shlosberg <ys9693@att.com>
diff --git a/openecomp-be/tools/build/scripts/generate-cassandra-init-cql.sh b/openecomp-be/tools/build/scripts/generate-cassandra-init-cql.sh index eaa9a3f..06065b1 100644 --- a/openecomp-be/tools/build/scripts/generate-cassandra-init-cql.sh +++ b/openecomp-be/tools/build/scripts/generate-cassandra-init-cql.sh
@@ -26,7 +26,7 @@ main() { - if [ $3 == 'yes' ]; then + if [ "$3" = "yes" ]; then echo "CREATE KEYSPACE IF NOT EXISTS dox WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor' : 1 };" fi echo "USE dox;"
diff --git a/openecomp-be/tools/build/scripts/zusammen-generate-cassandra-init-cql.sh b/openecomp-be/tools/build/scripts/zusammen-generate-cassandra-init-cql.sh index b215fb3..8cb422a 100644 --- a/openecomp-be/tools/build/scripts/zusammen-generate-cassandra-init-cql.sh +++ b/openecomp-be/tools/build/scripts/zusammen-generate-cassandra-init-cql.sh
@@ -27,7 +27,7 @@ main() { - if [ $3 == 'yes' ]; then + if [ "$3" = "yes" ]; then echo "CREATE KEYSPACE IF NOT EXISTS $KEYSPACE_ZUSAMMEN WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor' : 3 };" fi echo "USE $KEYSPACE_ZUSAMMEN;"