blob: 505c44a5778e3b69ba53fbad6e910111d6f389ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
################
# Update logback.xml
######
['logback.xml'].each do |file|
template "#{node['aai-app-config']['PROJECT_HOME']}/bundleconfig/etc/#{file}" do
source "aai-app-config/logback.erb"
owner "aaiadmin"
group "aaiadmin"
mode "0777"
variables(
:ORG_OPENECOMP_AAI_LEVEL => node["aai-app-config"]["ORG_OPENECOMP_AAI_LEVEL"]
)
end
end
|