Skip to content

Commit

Permalink
Corrected case in directory resource when config_include_dir attribut…
Browse files Browse the repository at this point in the history
…e is set to nil in recipes/default.rb line 77

Signed-off-by: Michael Kristan <[email protected]>
  • Loading branch information
mkristan committed Dec 29, 2016
1 parent 200ecfb commit 9050d5e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion recipes/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ class ::Chef::Recipe

# squid config include dir
# will only create directory if config_include_dir attribute is not nil
directory node['squid']['config_include_dir'] do
directory 'squid_config_include_dir' do
path node['squid']['config_include_dir']
action :create
recursive true
owner 'root'
Expand Down

0 comments on commit 9050d5e

Please sign in to comment.