summaryrefslogtreecommitdiffstats
path: root/utils/webseal-simulator/sdc-simulator/chef-repo/cookbooks/sdc-simulator/recipes/SDC_Simulator_4_locate_keystore.rb
blob: 3bb482d89a626e39d29b335dd66a0e6c7fdba3f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
jetty_base="/var/lib/jetty"

directory "Jetty_etcdir_creation" do
	path "/#{jetty_base}/etc"
	owner 'jetty'
	group 'jetty'
	mode '0755'
	action :create
end

cookbook_file "/#{jetty_base}/etc/keystore" do
   source "keystore"
   owner "jetty"
   group "jetty"
   mode 0755
end