chef-cookbooks / Yum

Licence: apache-2.0
Development repository for yum cookbook

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Yum

Runit
Development repository for the Chef Runit Cookbook
Stars: ✭ 101 (+5.21%)
Mutual labels:  hacktoberfest, chef, cookbook
Chef Vault
chef-vault cookbook
Stars: ✭ 63 (-34.37%)
Mutual labels:  hacktoberfest, chef, cookbook
Lvm
Development repository for lvm Chef cookbook
Stars: ✭ 51 (-46.87%)
Mutual labels:  hacktoberfest, chef, cookbook
Windows
Development repository for Chef Cookbook windows
Stars: ✭ 251 (+161.46%)
Mutual labels:  hacktoberfest, chef, cookbook
Ssh known hosts
Development repository for Chef Cookbook ssh_known_hosts
Stars: ✭ 73 (-23.96%)
Mutual labels:  hacktoberfest, chef, cookbook
Sudo
Development repository for sudo cookbook
Stars: ✭ 113 (+17.71%)
Mutual labels:  hacktoberfest, chef, cookbook
Iptables
Development repository for Chef Cookbook iptables
Stars: ✭ 96 (+0%)
Mutual labels:  hacktoberfest, chef, cookbook
Chef Server
Cookbook to install standalone Chef Server
Stars: ✭ 173 (+80.21%)
Mutual labels:  hacktoberfest, chef, cookbook
Chef Client
Development repository for Chef Client cookbook
Stars: ✭ 183 (+90.63%)
Mutual labels:  hacktoberfest, chef, cookbook
Cookstyle
A linting tool that helps you to write better Chef Infra cookbooks by detecting and automatically correcting style, syntax, and logic mistakes in your code.
Stars: ✭ 95 (-1.04%)
Mutual labels:  hacktoberfest, chef, cookbook
Chef
Chef Infra, a powerful automation platform that transforms infrastructure into code automating how infrastructure is configured, deployed and managed across any environment, at any scale
Stars: ✭ 6,766 (+6947.92%)
Mutual labels:  hacktoberfest, chef
Ohai
Ohai profiles your system and emits JSON
Stars: ✭ 641 (+567.71%)
Mutual labels:  hacktoberfest, chef
Ramda Adjunct
Ramda Adjunct is the most popular and most comprehensive set of functional utilities for use with Ramda, providing a variety of useful, well tested functions with excellent documentation.
Stars: ✭ 550 (+472.92%)
Mutual labels:  hacktoberfest, cookbook
Nginx
Development repository for the nginx cookbook
Stars: ✭ 528 (+450%)
Mutual labels:  hacktoberfest, chef
Activemq
Development repository for activemq Chef Cookbook
Stars: ✭ 19 (-80.21%)
Mutual labels:  chef, cookbook
Bluepill
Development repository for bluepill Chef Cookbook
Stars: ✭ 35 (-63.54%)
Mutual labels:  chef, cookbook
Rvm
Development repository for the rvm cookbook
Stars: ✭ 525 (+446.88%)
Mutual labels:  hacktoberfest, chef
Rsyslog
Development repository for the rsyslog cookbook
Stars: ✭ 66 (-31.25%)
Mutual labels:  hacktoberfest, chef
Grafana
Development repository for the grafana cookbook
Stars: ✭ 69 (-28.12%)
Mutual labels:  hacktoberfest, chef
Chef Splunk
Development repository for the chef-splunk cookbook
Stars: ✭ 70 (-27.08%)
Mutual labels:  hacktoberfest, chef

yum Cookbook

ci Cookbook Version

The Yum cookbook exposes the yum_globalconfig resource which allows a user to control global yum behavior. This resources aims to allow the user to configure all options listed in the yum.conf man page, found at http://man7.org/linux/man-pages/man5/yum.conf.5.html

Requirements

Platforms

  • RHEL/CentOS and derivatives
  • Fedora

Chef

  • Chef 13+

Cookbooks

  • none

Resources

yum_globalconfig

This renders a template with global yum configuration parameters. The default recipe uses it to render /etc/yum.conf. It is flexible enough to be used in other scenarios, such as building RPMs in isolation by modifying installroot.

Example

yum_globalconfig '/my/chroot/etc/yum.conf' do
  cachedir '/my/chroot/etc/yum.conf'
  keepcache 'yes'
  debuglevel '2'
  installroot '/my/chroot'
  action :create
end

Properties

yum_globalconfig can take most of the same parameters as a yum_repository, plus more, too numerous to describe here. Below are a few of the more commonly used ones. For a complete list, please consult the yum.conf man page, found here: http://linux.die.net/man/5/yum.conf

  • cachedir - Directory where yum should store its cache and db files. The default is '/var/cache/yum'.
  • keepcache - Either true or false. Determines whether or not yum keeps the cache of headers and packages after successful installation. Default is false
  • debuglevel - Debug message output level. Practical range is 0-10. Default is '2'.
  • exclude - List of packages to exclude from updates or installs. This should be a space separated list. Shell globs using wildcards (eg. * and ?) are allowed.
  • installonlypkgs = List of package provides that should only ever be installed, never updated. Kernels in particular fall into this category. Defaults to kernel, kernel-bigmem, kernel-enterprise, kernel-smp, kernel-debug, kernel-unsupported, kernel-source, kernel-devel, kernel-PAE, kernel-PAE-debug.
  • logfile - Full directory and file name for where yum should write its log file.
  • exactarch - Either true or false. Set to true to make 'yum update' only update the architectures of packages that you have installed. ie: with this enabled yum will not install an i686 package to update an x86_64 package. Default is true
  • gpgcheck - Either true or false. This tells yum whether or not it should perform a GPG signature check on the packages gotten from this repository.

yum_repository

This resource is now provided by chef-client 12.14 and later and has been removed from this cookbook. If you require this resource we highly recommend upgrading your chef-client, but if that is not an option you can pin the 4.X yum cookbook.

Recipes (deprecated)

  • default - Configures yum_globalconfig[/etc/yum.conf] with values found in node attributes at node['yum']['main']

Attributes

The following attributes are set by default

default['yum']['main']['cachedir'] = '/var/cache/yum/$basearch/$releasever'
default['yum']['main']['keepcache'] = false
default['yum']['main']['debuglevel'] = nil
default['yum']['main']['exclude'] = nil
default['yum']['main']['logfile'] = '/var/log/yum.log'
default['yum']['main']['exactarch'] = nil
default['yum']['main']['obsoletes'] = nil
default['yum']['main']['installonly_limit'] = nil
default['yum']['main']['installonlypkgs'] = nil
default['yum']['main']['installroot'] = nil

For Amazon platform nodes, the default is to receive a continuous flow of updates,

default['yum']['main']['releasever'] = 'latest'

To lock existing instances to the current version of the Amazon AMI,

default['yum']['main']['releasever'] = ''

Related Cookbooks

Recipes from older versions of this cookbook have been moved individual cookbooks. Recipes for managing platform yum configurations and installing specific repositories can be found in one (or more!) of the following cookbook.

  • yum-centos
  • yum-fedora
  • yum-amazon
  • yum-epel
  • yum-elrepo
  • yum-repoforge
  • yum-ius
  • yum-percona
  • yum-pgdg

Usage

Put depends 'yum' in your metadata.rb to gain access to the yum_repository resource.

License & Authors

Copyright:: 2011 Eric G. Wolfe
Copyright:: 2013-2017 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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].