summaryrefslogtreecommitdiffstats
path: root/auth
diff options
context:
space:
mode:
authorInstrumental <jonathan.gathman@att.com>2018-10-16 14:09:31 -0500
committerInstrumental <jonathan.gathman@att.com>2018-10-16 14:09:57 -0500
commite66f42815faa85c1511c3f8f853f1a173aa14df7 (patch)
tree0a507d245c5d8f35db5c29ad72dc17973a5cb82d /auth
parenta93911399b464aba33c072eb0a994e50a6691b7e (diff)
Old but Existing NFS
Issue-ID: AAF-557 Change-Id: Ifb3ad67f7aa285222d216faf10ab050298f80777 Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'auth')
-rw-r--r--auth/auth-cass/cass_init/cmd.sh18
1 files changed, 12 insertions, 6 deletions
diff --git a/auth/auth-cass/cass_init/cmd.sh b/auth/auth-cass/cass_init/cmd.sh
index ec8cf6b7..891c8915 100644
--- a/auth/auth-cass/cass_init/cmd.sh
+++ b/auth/auth-cass/cass_init/cmd.sh
@@ -3,6 +3,7 @@
# Engage normal Cass Init, then check for data installation
#
DIR="/opt/app/aaf/status"
+INSTALLED_VERSION=/opt/app/aaf/cass_init/INSTALLED_VERSION
if [ ! -e /aaf_cmd ]; then
ln -s /opt/app/aaf/cass_init/cmd.sh /aaf_cmd
@@ -61,10 +62,12 @@ function wait_ready {
function install_cql {
wait_start started
# Now, make sure data exists
- if [ "$(/usr/bin/cqlsh -e 'describe keyspaces' | grep authz)" = "" ]; then
- status install
- echo "Initializing Cassandra DB"
- if [ "`/usr/bin/cqlsh -e 'describe keyspaces' | grep authz`" == "" ]; then
+ if [ ! -e $INSTALLED_VERSION ] && [ -n "$(/usr/bin/cqlsh -e 'describe keyspaces' | grep authz)" ]; then
+ /usr/bin/cqlsh -e 'DROP KEYSPACE authz'
+ fi
+ if [ -z "`/usr/bin/cqlsh -e 'describe keyspaces' | grep authz`" ]; then
+ status install
+ echo "Initializing Cassandra DB"
echo "Docker Installed Basic Cassandra on aaf_cass. Executing the following "
echo "NOTE: This creator provided is only a Single Instance. For more complex Cassandra, create independently"
echo ""
@@ -79,16 +82,18 @@ function install_cql {
echo ""
echo "The following will give you a temporary identity with which to start working, or emergency"
echo " cqlsh -f temp_identity.cql"
- fi
+ echo "2.1.15"> $INSTALLED_VERSION
+ else
+ echo "Cassandra DB already includes 'authz' keyspace"
fi
status $1
}
function install_onap {
echo " cd /opt/app/aaf/cass_init"
- cd /opt/app/aaf/cass_init
install_cql initialized
status prep data for bootstrapping
+ cd /opt/app/aaf/cass_init
bash prep.sh
status push data to cassandra
bash push.sh
@@ -111,6 +116,7 @@ case "$1" in
;;
onap)
+ cd /opt/app/aaf/cass_init
# start install_onap (which calls install_cql first) in background, waiting for process to start
install_onap &