Align onap/base_sdc-xyz versions
[sdc.git] / sdc-os-chef / sdc-cassandra / startup.sh
index 2f7cc3c..c779e37 100755 (executable)
@@ -1,25 +1,17 @@
 #!/bin/bash
 
 cd /root/chef-solo
-echo "normal['HOST_IP'] = \"${HOST_IP}\"" >> /root/chef-solo/cookbooks/cassandra-actions/attributes/default.rb
-
-export CHEFNAME=${ENVNAME}
-
-sed -i "s/HOSTIP/${HOST_IP}/g" /root/chef-solo/cookbooks/cassandra-actions/recipes/02-createCsUser.rb
-sed -i "s/HOSTIP/${HOST_IP}/g" /root/chef-solo/cookbooks/cassandra-actions/recipes/03-createDoxKeyspace.rb
-sed -i "s/HOSTIP/${HOST_IP}/g" /root/chef-solo/cookbooks/cassandra-actions/recipes/04-schemaCreation.rb
-
-chef-solo -c solo.rb -o recipe[cassandra-actions::01-configureCassandra] -E ${CHEFNAME}
+chef-solo -c solo.rb -o recipe[cassandra-actions::01-configureCassandra] -E ${ENVNAME}
 rc=$?
-
 if [[ $rc != 0 ]]; then exit $rc; fi
+
 echo "########### starting cassandra ###########"
-# start cassandra
-/docker-entrypoint.sh cassandra -f &
 
-sleep 10
+/docker-entrypoint.sh cassandra -f &
 
-chef-solo -c solo.rb  -E ${CHEFNAME}
+chef-solo -c solo.rb  -E ${ENVNAME}
+rc=$?
+if [[ $rc != 0 ]]; then exit $rc; fi
+while true; do sleep 30; done
 
-while true; do sleep 2; done