forked from sous-chefs/apt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.rb
22 lines (17 loc) · 820 Bytes
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name 'apt'
maintainer 'Chef Software, Inc.'
maintainer_email '[email protected]'
license 'Apache 2.0'
description 'Configures apt and apt services. Ships resources for managing apt repositories'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '3.0.0'
recipe 'apt::default', 'Runs apt-get update during compile phase and sets up preseed directories'
recipe 'apt::cacher-ng', 'Set up an apt-cacher-ng caching proxy'
recipe 'apt::cacher-client', 'Client for the apt::cacher-ng caching proxy'
%w(ubuntu debian).each do |os|
supports os
end
source_url 'https://github.com/chef-cookbooks/apt' if respond_to?(:source_url)
issues_url 'https://github.com/chef-cookbooks/apt/issues' if respond_to?(:issues_url)
chef_version '>= 12.0' if respond_to?(:chef_version)
depends 'compat_resource'