summaryrefslogtreecommitdiffstats
path: root/cookbooks/aai-traversal/aai-traversal-config/recipes/titan-realtime.rb
blob: e45cf4cc901e94d5f540c50017cc7fac4812337c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
['titan-realtime.properties'].each do |file|
  template "#{node['aai-traversal-config']['PROJECT_HOME']}/bundleconfig/etc/appprops/#{file}" do
    source "aai-traversal-app-config/titan-realtime.properties"
    owner "aaiadmin"
    group "aaiadmin"
    mode "0644"
    variables(
:STORAGE_HOSTNAME => node["aai-traversal-config"]["STORAGE_HOSTNAME"],
:STORAGE_BACKEND => node["aai-traversal-config"]["STORAGE_BACKEND"],
:STORAGE_HBASE_TABLE => node["aai-traversal-config"]["STORAGE_HBASE_TABLE"],
:STORAGE_HBASE_ZOOKEEPER_ZNODE_PARENT => node["aai-traversal-config"]["STORAGE_HBASE_ZOOKEEPER_ZNODE_PARENT"]
      )
  end
end