diff options
author | Adam Jacob <adam@hjksolutions.com> | 2008-09-08 16:11:59 -0700 |
---|---|---|
committer | Adam Jacob <adam@hjksolutions.com> | 2008-09-08 16:11:59 -0700 |
commit | d200b212a281b2686caa990a667d3e542d590231 (patch) | |
tree | 4f5e719b9833c0a6bf3fe69a78d392602f1f8f9f /lib/chef/platform.rb | |
parent | d298683acde185e161f2eb12b0e806582e3d3d6b (diff) | |
download | chef-d200b212a281b2686caa990a667d3e542d590231.tar.gz |
Adding package resource and apt provider
Diffstat (limited to 'lib/chef/platform.rb')
-rw-r--r-- | lib/chef/platform.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/chef/platform.rb b/lib/chef/platform.rb index 3e8bb6809c..0153841da5 100644 --- a/lib/chef/platform.rb +++ b/lib/chef/platform.rb @@ -24,7 +24,9 @@ class Chef @platforms = { :mac_os_x => {}, - :ubuntu => {}, + :ubuntu => { + :package => Chef::Provider::Apt, + }, :centos => {}, :redhat => {}, :gentoo => {}, |