aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/recipes/BE_1_cleanup_jettydir.rb
blob: 14cfe0421360963a2763509fafdca33208ffd45c (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
directory "BE_tempdir_creation" do
  path "#{ENV['JETTY_BASE']}/temp"
  owner 'jetty'
  group 'jetty'
  mode '0755'
  action :create
end

directory "BE_create_config_dir" do
  path "#{ENV['JETTY_BASE']}/config"
  owner 'jetty'
  group 'jetty'
  mode '0755'
  action :create
end


directory "BE_create_catalog-be" do
  path "#{ENV['JETTY_BASE']}/config/catalog-be"
  owner 'jetty'
  group 'jetty'
  mode '0755'
  action :create
end

directory "BE_create_log_dir" do
  path "#{ENV['JETTY_BASE']}/logs/SDC/SDC-BE"
  owner 'jetty'
  group 'jetty'
  mode '0755'
  action :create
  recursive true
end