cookbook 'yum-repoforge', '= 0.5.6'
The yum-repoforge cookbook has been deprecated
Author provided reason for deprecation:
The yum-repoforge cookbook has been deprecated and is no longer being maintained by its authors. Use of the yum-repoforge cookbook is no longer recommended.
yum-repoforge
(19) Versions
0.5.6
-
Follow8
Installs and onfigures yum-repoforge aka RPMforge
cookbook 'yum-repoforge', '= 0.5.6', :supermarket
knife supermarket install yum-repoforge
knife supermarket download yum-repoforge
yum-repoforge Cookbook
The yum-repoforge cookbook takes over management of the default repositoryids used by repoforge. It allows attribute manipulation of rpmforge
, rpmforge-extras
, and rpmforge-testing
Requirements
Platforms
- RHEL/CentOS and derivatives
- Fedora
Chef
- Chef 11+
Cookbooks
- yum version 3.2.0 or higher
- yum-epel
Attributes
The following attributes are set by default
default['yum']['rpmforge']['repositoryid'] = 'rpmforge' default['yum']['rpmforge']['description'] = 'RHEL $releasever - RPMforge.net - dag' default['yum']['rpmforge']['mirrorlist'] = 'http://mirrorlist.repoforge.org/el6/mirrors-rpmforge' default['yum']['rpmforge']['enabled'] = true default['yum']['rpmforge']['managed'] = true default['yum']['rpmforge']['gpgcheck'] = true default['yum']['rpmforge']['gpgkey'] = 'http://apt.sw.be/RPM-GPG-KEY.dag.txt'
default['yum']['rpmforge-extras']['repositoryid'] = 'rpmforge' default['yum']['rpmforge-extras']['description'] = 'RHEL $releasever - RPMforge.net - extras' default['yum']['rpmforge-extras']['mirrorlist'] = 'http://mirrorlist.repoforge.org/el6/mirrors-rpmforge-extras' default['yum']['rpmforge-extras']['enabled'] = true default['yum']['rpmforge-extras']['managed'] = true default['yum']['rpmforge-extras']['gpgcheck'] = true default['yum']['rpmforge-extras']['gpgkey'] = 'http://apt.sw.be/RPM-GPG-KEY.dag.txt'
default['yum']['rpmforge-testing']['repositoryid'] = 'rpmforge-testing' default['yum']['rpmforge-testing']['description'] = 'RHEL $releasever - RPMforge.net - testing' default['yum']['rpmforge-testing']['mirrorlist'] = 'http://mirrorlist.repoforge.org/el6/mirrors-rpmforge-testing' default['yum']['rpmforge-testing']['enabled'] = true default['yum']['rpmforge-testing']['managed'] = true default['yum']['rpmforge-testing']['gpgcheck'] = true default['yum']['rpmforge-testing']['gpgkey'] = 'http://apt.sw.be/RPM-GPG-KEY.dag.txt'
Recipes
- default - Walks through node attributes and feeds a yum_resource
- parameters. The following is an example a resource generated by the
- recipe during compilation.
yum_repository 'rpmforge' do mirrorlist 'http://mirrorlist.repoforge.org/el6/mirrors-rpmforge' description 'RHEL $releasever - RPMforge.net - dag' enabled true gpgcheck true gpgkey 'http://apt.sw.be/RPM-GPG-KEY.dag.txt' end
Usage Example
To disable the CentOS Extras repository through a Role or Environment definition
default_attributes(
:yum => {
:rpmforge => {
:enabled => {
false
}
}
}
)
To enable the rpmforge repository with a wrapper cookbook, place the following in a recipe:
node.default['yum']['rpmforge']['enabled'] = true node.default['yum']['rpmforge']['managed'] = true include_recipe 'yum-repoforge'
More Examples
Point the base and updates repositories at an internally hosted server.
node.default['yum']['rpmforge']['enabled'] = true node.default['yum']['rpmforge']['mirrorlist'] = nil node.default['yum']['rpmforge']['baseurl'] = 'https://internal.example.com/centos/6/os/x86_64' node.default['yum']['rpmforge']['sslverify'] = false include_recipe 'yum-repoforge'
License & Authors
Author: Cookbook Engineering Team (cookbooks@chef.io)
Copyright: 2011-2015, Chef Software, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
yum-repoforge Cookbook CHANGELOG
This file is used to list changes made in each version of the yum-repoforge cookbook.
v0.5.6 (2015-12-09)
- Adding unless nil checks to properties in recipe to avoid Chef 13 deprecation warnings
v0.5.5
- No changes... accidental release number mistake
v0.5.4 (2015-09-21)
- Added Chef standard Rubocop file and resolved all warnings
- Added Kitchen CI platforms
- Add supported platforms to the metadata
- Fixed the package install test bats file to pass
- Added Chef standard chefignore and .gitignore files
- Updated Berksfile to 3.X format
- Updated and expanded development dependencies in the Gemfile
- Added contributing, testing, and maintainers docs
- Added platform requirements to the readme
- Added Travis and cookbook version badges to the readme
- Update Chefspec to 4.X format
v0.5.3 (2015-06-21)
- Updating to depend on yum ~> 3.2
v0.5.2 (2015-06-21)
- Support for EL7
v0.5.1 (2015-04-15)
- Amazon Linux 2015.03
v0.5.0 (2014-01-07)
- Adding centos-7 support
v0.4.0 (2014-09-02)
- Add all attribute available to LWRP to allow for tuning
v0.3.0 (2014-06-11)
1 - Support for Amazon Linux 2014.03
v0.2.0 (2014-02-14)
- Updating test harness
v0.1.4
Adding CHANGELOG.md
v0.1.0
initial release
Foodcritic Metric
0.5.6 passed this metric
0.5.6 passed this metric