aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-fe/sdc-frontend/chef-repo/cookbooks/sdc-catalog-fe/recipes/FE_1_cleanup_jettydir.rb
blob: 7449518f87ea73067db47494a0666bcfbb7a63d0 (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 "FE_tempdir_creation" do
  path "#{ENV['JETTY_BASE']}/temp"
  owner 'jetty'
  group 'jetty'
  mode '0755'
  action :create
end

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


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


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