-
-
Notifications
You must be signed in to change notification settings - Fork 264
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
14 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,3 +44,4 @@ vendor/ | |
#vagrant stuff | ||
.vagrant/ | ||
.vagrant.d/ | ||
.kitchen/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
name 'apt' | ||
maintainer 'Chef Software, Inc.' | ||
maintainer_email '[email protected]' | ||
license 'Apache 2.0' | ||
description 'Configures apt and apt services and LWRPs for managing apt repositories and preferences' | ||
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) | ||
issues_url 'https://github.com/opscode-cookbooks/apt/issues' if respond_to?(:issues_url) | ||
source_url 'https://github.com/opscode-cookbooks/apt' if respond_to?(:source_url) | ||
version '2.8.2' | ||
recipe 'apt', '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' | ||
name 'apt' | ||
maintainer 'Chef Software, Inc.' | ||
maintainer_email '[email protected]' | ||
license 'Apache 2.0' | ||
description 'Configures apt and apt services and LWRPs for managing apt repositories and preferences' | ||
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) | ||
issues_url 'https://github.com/opscode-cookbooks/apt/issues' if respond_to?(:issues_url) | ||
source_url 'https://github.com/opscode-cookbooks/apt' if respond_to?(:source_url) | ||
version '2.8.2' | ||
recipe 'apt', '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| | ||
%w(ubuntu debian).each do |os| | ||
supports os | ||
end | ||
|
||
|