diff options
author | Tim Smith <tsmith@chef.io> | 2018-12-06 22:22:48 -0800 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2019-04-15 10:27:10 -0700 |
commit | 49ca8ca5070d171b8d64d3158f93531ee0573c4b (patch) | |
tree | 3241093f3747132c967217a562f51f8d41262da5 /lib/chef/resources.rb | |
parent | ce11470525cf03df6b464112db9501d7c49fd29b (diff) | |
download | chef-49ca8ca5070d171b8d64d3158f93531ee0573c4b.tar.gz |
Add a new archive_file resource from the libarchive cookbook
This adds the archive_file resource from the libarchive cookbook. I've updated the property names in that cookbook to allow us to add a :create action later on. This code matches the code in the cookbook nearly 100%.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/resources.rb')
-rw-r--r-- | lib/chef/resources.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/chef/resources.rb b/lib/chef/resources.rb index 0a74fcea23..59cae3558a 100644 --- a/lib/chef/resources.rb +++ b/lib/chef/resources.rb @@ -20,6 +20,7 @@ require "chef/resource/apt_package" require "chef/resource/apt_preference" require "chef/resource/apt_repository" require "chef/resource/apt_update" +require "chef/resource/archive_file" require "chef/resource/bash" require "chef/resource/batch" require "chef/resource/breakpoint" |