summaryrefslogtreecommitdiffstats
path: root/utils/webseal-simulator/sdc-simulator/chef-repo/cookbooks/sdc-simulator/recipes/SDC_Simulator_1_cleanup_jettydir.rb
blob: bb67b8cdbc45aa68ef0c0d9cb3039916ca3bd419 (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
jetty_base="/var/lib/jetty"

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


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


directory "SDC_Simulator_create_sdc-simulator" do
  path "#{jetty_base}/config/sdc-simulator"
  owner 'jetty'
  group 'jetty'
  mode '0755'
  action :create
end