Remove jboss-rmi
[sdc.git] / catalog-be / sdc-backend / chef-repo / cookbooks / sdc-catalog-be / recipes / BE_3_locate_keystore.rb
1
2 directory "Jetty_etcdir_creation" do
3         path "#{ENV['JETTY_BASE']}/etc"
4         owner 'jetty'
5         group 'jetty'
6         mode '0755'
7         action :create
8 end
9         
10 cookbook_file "#{ENV['JETTY_BASE']}/etc/org.onap.sdc.p12" do
11    source "org.onap.sdc.p12"
12    owner "jetty"
13    group "jetty"
14    mode 0755
15 end
16
17 cookbook_file "#{ENV['JETTY_BASE']}/etc/org.onap.sdc.trust.jks" do
18    source "org.onap.sdc.trust.jks"
19    owner "jetty"
20    group "jetty"
21    mode 0755
22 end
23