forked from atomic-penguin/cookbook-yumrepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.rb
25 lines (24 loc) · 1.38 KB
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
maintainer "Eric G. Wolfe"
maintainer_email "[email protected]"
license "Apache 2.0"
description "Installs and configures EPEL, ELFF, Dell, and VMware yum repositories."
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "0.16.6"
depends "yum", ">= 1.0.0"
name "yumrepo"
recipe "yumrepo::default", "Installs EPEL, and Dell repositories."
recipe "yumrepo::corporate", "Example recipe for deploying rpms from an internal yum.example.com/yum repo"
recipe "yumrepo::dell", "Installs Dell OpenManage and optionatlly firmware components."
recipe "yumrepo::epel", "Installs Fedora Extra Packages for Enterprise Linux (EPEL) repository"
recipe "yumrepo::elff", "No longer maintained - Deprecated"
recipe "yumrepo::rbel", "Ruby and Opschef packages for RHEL"
recipe "yumrepo::vmware-tools", "Installs VMware (vmware-tools) repository"
recipe "yumrepo::vmware-tools-upgrade", "Upgrades vmware-tools 4.x components to 5.0u1"
recipe "yumrepo::annvix", "Annvix repository for packages usable with Red Hat Enterprise Linux and CentOS."
recipe "yumrepo::postgresql", "PostgreSQL RPMs from pgrpms.org"
recipe "yumrepo::zenoss", "YUM repo for ZenOss stable"
recipe "yumrepo::zeromq", "YUM repo for Zeromq 3.2.* series"
recipe "yumrepo::jenkins", "Jenkins CI"
%w{ redhat centos scientific amazon oracle }.each do |os|
supports os, ">= 5.0"
end