forked from sous-chefs/yum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.rb
21 lines (18 loc) · 976 Bytes
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
maintainer "Opscode, Inc."
maintainer_email "[email protected]"
license "Apache 2.0"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "0.6.2"
recipe "yum", "Empty recipe."
recipe "yum::yum", "Manages yum configuration"
%w{ redhat centos scientific amazon }.each do |os|
supports os, ">= 5.0"
end
attribute "yum/exclude",
:display_name => "yum.conf exclude",
:description => "List of packages to exclude from updates or installs. This should be an array. Shell globs using wildcards (eg. * and ?) are allowed.",
:required => "optional"
attribute "yum/installonlypkgs",
:display_name => "yum.conf installonlypkgs",
:description => "List of packages that should only ever be installed, never updated. Kernels in particular fall into this category. Defaults to kernel, kernel-smp, kernel-bigmem, kernel-enterprise, kernel-debug, kernel-unsupported.",
:required => "optional"