aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/mso-topology-config.rb
blob: 214c985d58755496e18b63cffb795b2e8c00f85a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
######################
# Topology template file
##########
['topology.properties'].each do |file|
  template "#{node['mso_config_path']}#{file}" do
    source "mso-topology-config/#{file}"
    owner "jboss"
    group "jboss"
    mode "0744"
    variables(
      :var => node["mso-config"]["topology"]
      )
  end
end