Skip to content

Commit

Permalink
Merge pull request #1366 from jorhett/master
Browse files Browse the repository at this point in the history
Create the log directory to avoid failures which assume it's created
  • Loading branch information
nellshamrell committed Jul 18, 2016
2 parents 6cf11a2 + b89c4c6 commit 7c19267
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions omnibus/cookbooks/omnibus-supermarket/recipes/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,14 @@
owner node['supermarket']['user']
group node['supermarket']['group']
mode '0700'
recursive true
end

directory node['supermarket']['log_directory'] do
owner node['supermarket']['user']
group node['supermarket']['group']
mode '0700'
recursive true
end

directory "#{node['supermarket']['var_directory']}/etc" do
Expand Down

0 comments on commit 7c19267

Please sign in to comment.