[SDC-29] catalog 1707 rebase commit.

Change-Id: I43c3dc5cf44abf5da817649bc738938a3e8388c1
Signed-off-by: Michael Lando <ml636r@att.com>
diff --git a/sdc-os-chef/sdc-cassandra/chef-repo/cookbooks/cassandra-actions/recipes/04-schemaCreation.rb b/sdc-os-chef/sdc-cassandra/chef-repo/cookbooks/cassandra-actions/recipes/04-schemaCreation.rb
index 7c40c50..5890603 100644
--- a/sdc-os-chef/sdc-cassandra/chef-repo/cookbooks/cassandra-actions/recipes/04-schemaCreation.rb
+++ b/sdc-os-chef/sdc-cassandra/chef-repo/cookbooks/cassandra-actions/recipes/04-schemaCreation.rb
@@ -7,12 +7,24 @@
 bash "install tar" do
   cwd "/tmp"
   code <<-EOH
-     /bin/tar xvf /tmp/sdctool.tar -C /tmp
+     /bin/tar xf /tmp/sdctool.tar -C /tmp
   EOH
 end
 
 
+template "titan.properties" do
+  sensitive true
+  path "/tmp/sdctool/config/titan.properties"
+  source "titan.properties.erb"
+  mode "0755"
+  variables({
+      :DC_NAME      => node['cassandra'][:cluster_name]+node.chef_environment
+  })
+end
+
+
 template "/tmp/sdctool/config/configuration.yaml" do
+  sensitive true
   source "configuration.yaml.erb"
   mode 0755
   variables({
@@ -21,11 +33,14 @@
       :ssl_port     => node['BE'][:https_port],
       :cassandra_ip => node['Nodes']['CS'],
       :rep_factor   => 1,
-      :dc1          => "DC-"+node.chef_environment
+      :DC_NAME      => node['cassandra'][:cluster_name]+node.chef_environment,
+      :titan_Path   => "/tmp/sdctool/config/"
   })
 end
 
+
 template "/tmp/sdctool/config/elasticsearch.yml" do
+  sensitive true
   source "elasticsearch.yml.erb"
   mode 0755
   variables({
@@ -33,3 +48,11 @@
   })
 end
 
+
+bash "excuting-schema-creation" do
+   code <<-EOH
+     cd /tmp
+     chmod +x /tmp/sdctool/scripts/schemaCreation.sh
+     /tmp/sdctool/scripts/schemaCreation.sh /tmp/sdctool/config
+   EOH
+end