summaryrefslogtreecommitdiffstats
path: root/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_3_locate_keystore.rb
blob: e540b34d2603d76388c64a048c9ee000ed1f5627 (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 'jetty'
	group 'jetty'
	mode '0755'
	action :create
end
	
cookbook_file "#{ENV['JETTY_BASE']}/etc/keystore" do
   source "keystore"
   owner "jetty"
   group "jetty"
   mode 0755
end

cookbook_file "#{ENV['JETTY_BASE']}/etc/truststore" do
   source "truststore"
   owner "jetty"
   group "jetty"
   mode 0755
end