aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/docker/backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_3_locate_keystore.rb
blob: 176edcf71c8a9c5d158c9a1e79004323182f9362 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
directory "Jetty_etcdir_creation" do
	path "#{ENV['JETTY_BASE']}/etc"
	owner "#{ENV['JETTY_USER']}"
	owner "#{ENV['JETTY_GROUP']}"
	mode '0755'
	action :create
end
	
cookbook_file "#{ENV['JETTY_BASE']}/etc/org.onap.sdc.p12" do
   source "org.onap.sdc.p12"
   owner "#{ENV['JETTY_USER']}"
   owner "#{ENV['JETTY_GROUP']}"
   mode 0755
end

cookbook_file "#{ENV['JETTY_BASE']}/etc/org.onap.sdc.trust.jks" do
   source "org.onap.sdc.trust.jks"
   owner "#{ENV['JETTY_USER']}"
   owner "#{ENV['JETTY_GROUP']}"
   mode 0755
end