diff options
author | Adam Jacob <adam@hjksolutions.com> | 2008-07-10 19:58:43 -0700 |
---|---|---|
committer | Adam Jacob <adam@hjksolutions.com> | 2008-07-10 19:58:43 -0700 |
commit | d734c714c1e7598ddba40b47c26d10f002e06420 (patch) | |
tree | f45f547500cc1bcb10a1fad4bb5af5213736c2e9 /lib/chef/resource/directory.rb | |
parent | c4e77b13c03d4d43b94b051cc819ff83a42f0ab5 (diff) | |
download | chef-d734c714c1e7598ddba40b47c26d10f002e06420.tar.gz |
Adding functional search support
Diffstat (limited to 'lib/chef/resource/directory.rb')
-rw-r--r-- | lib/chef/resource/directory.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/resource/directory.rb b/lib/chef/resource/directory.rb index 24e683bef9..1e13891fae 100644 --- a/lib/chef/resource/directory.rb +++ b/lib/chef/resource/directory.rb @@ -22,9 +22,9 @@ class Chef class Resource class Directory < Chef::Resource - def initialize(name, collection=nil) + def initialize(name, collection=nil, node=nil) @resource_name = :directory - super(name, collection) + super(name, collection, node) @path = name @action = :create @allowed_actions.push(:create, :delete) |