aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-fe/sdc-frontend/chef-repo/cookbooks/sdc-catalog-fe/recipes/FE_6_locate_keystore.rb
blob: b2a7edef0b2d7f167975e86cc6eea0af00736103 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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