summaryrefslogtreecommitdiffstats
path: root/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_10_setup_cadi.rb
blob: b06f8a5342b88b0f5f556acc959b1fc85d742533 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
jetty_base = "#{ENV['JETTY_BASE']}"


directory "Jetty_etc_dir_creation" do
	path "#{jetty_base}/etc"
	owner 'jetty'
	group 'jetty'
	mode '0755'
	action :create
  not_if { ::File.directory?("#{jetty_base}/etc") }
end


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


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


template "#{jetty_base}/etc/cadi.properties" do
  path "#{jetty_base}/etc/cadi.properties"
  source "cadi.properties.erb"
  owner "jetty"
  group "jetty"
  mode "0755"
end


#Workaround due to hardcode definition in cata,log-be web.xml file
directory "/opt/app/jetty" do
  path "/opt/app/jetty"
  owner 'jetty'
  group 'jetty'
  mode '0755'
  recursive true
  action :create
end

directory "/opt/app/jetty/base/" do
  path "/opt/app/jetty/base/"
  owner 'jetty'
  group 'jetty'
  mode '0755'
  recursive true
  action :create
end


directory "/opt/app/jetty/base/be/" do
  path "/opt/app/jetty/base/be/"
  owner 'jetty'
  group 'jetty'
  mode '0755'
  recursive true
  action :create
end

directory "/opt/app/jetty/base/be/etc" do
  path "/opt/app/jetty/base/be/etc"
  owner 'jetty'
  group 'jetty'
  mode '0755'
  recursive true
  action :create
end

#Workaround due to hardcode definition in catalog-be web.xml file
template "/opt/app/jetty/base/be/etc/cadi.properties" do
  path "/opt/app/jetty/base/be/etc/cadi.properties"
  source "cadi.properties.erb"
  owner "jetty"
  group "jetty"
  mode "0755"
end