diff options
author | Yuli Shlosberg <ys9693@att.com> | 2017-11-26 19:05:23 +0200 |
---|---|---|
committer | Michael Lando <ml636r@att.com> | 2017-11-27 08:49:27 +0000 |
commit | 0566f581c0f310384f42838c388f57234ed1d60e (patch) | |
tree | dd782da7ebd4ce591876865a564b9c1f65eb5e66 /openecomp-be/tools/build/scripts/generate-cassandra-init-cql.sh | |
parent | 4d8033eeb036943c05b3a5752b8f4cd4d705272f (diff) |
sync 1.1.0 to master
Change-Id: I6e040f039895dd2ced55f95824473946b226fb5d
Issue-ID: SDC-707
Signed-off-by: Yuli Shlosberg <ys9693@att.com>
Diffstat (limited to 'openecomp-be/tools/build/scripts/generate-cassandra-init-cql.sh')
-rw-r--r-- | openecomp-be/tools/build/scripts/generate-cassandra-init-cql.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 eaa9a3f59d..06065b1368 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 @@ usage() { echo "Usage: $0 <db-cql-json-file> keyspace yes/no, for example: $0 ca 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;" |