Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

RSS

yum-erlang_solutions (20) Versions 2.1.2

Installs/Configures yum-erlang_solutions

Policyfile
Berkshelf
Knife
cookbook 'yum-erlang_solutions', '= 2.1.2', :supermarket
cookbook 'yum-erlang_solutions', '= 2.1.2'
knife supermarket install yum-erlang_solutions
knife supermarket download yum-erlang_solutions
README
Dependencies
Changelog
Quality 100%

yum-erlang_solutions Cookbook

Cookbook Version
CI State
OpenCollective
OpenCollective
License

The yum-erlang_solutions cookbook takes over management of the default repositoryids used by erlang_solutions. It allows attribute manipulation of erlang_solutions.

Maintainers

This cookbook is maintained by the Sous Chefs. The Sous Chefs are a community of Chef cookbook maintainers working together to maintain important cookbooks. If you’d like to know more please visit sous-chefs.org or come chat with us on the Chef Community Slack in #sous-chefs.

Requirements

Platforms

  • RHEL/CentOS and derivatives
  • Amazon Linux

Chef

  • Chef 12.14+

Cookbooks

  • none

Attributes

The following attributes are set by default

default['yum']['erlang_solutions']['baseurl'] = "http://packages.erlang-solutions.com/rpm/centos/#{platform_version.to_i}/$basearch"
default['yum']['erlang_solutions']['description'] = "Centos #{platform_version.to_i} - $basearch - Erlang Solutions"
default['yum']['erlang_solutions']['gpgkey'] = 'http://packages.erlang-solutions.com/debian/erlang_solutions.asc'
default['yum']['erlang_solutions']['enabled'] = true

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 'erlang_solutions' do
    baseurl 'http://packages.erlang-solutions.com/rpm/centos/#{platform_version.to_i}/$basearch'
    description 'Centos #{platform_version.to_i} - $basearch - Erlang Solutions'
    enabled true
    gpgcheck true
    gpgkey 'http://packages.erlang-solutions.com/debian/erlang_solutions.asc'
  end

Usage Example

To disable the erlang_solutions repository through a Role or Environment definition

default_attributes(
  :yum => {
    :erlang_solutions => {
      :enabled => {
        false
       }
     }
   }
 )

To enable the erlang_solutions repository with a wrapper cookbook, place the following in a recipe:

node.default['yum']['erlang_solutions']['enabled'] = true
include_recipe 'yum-erlang_solutions'

More Examples

Point the erlang_solutions repositories at an internally hosted server.

node.default['yum']['erlang_solutions']['enabled'] = true
node.default['yum']['erlang_solutions']['baseurl'] = 'https://internal.example.com/erlang_solutions'
node.default['yum']['erlang_solutions']['sslverify'] = false

include_recipe 'yum-erlang_solutions'

Contributors

This project exists thanks to all the people who contribute.

Backers

Thank you to all our backers!

https://opencollective.com/sous-chefs#backers

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website.

https://opencollective.com/sous-chefs/sponsor/0/website
https://opencollective.com/sous-chefs/sponsor/1/website
https://opencollective.com/sous-chefs/sponsor/2/website
https://opencollective.com/sous-chefs/sponsor/3/website
https://opencollective.com/sous-chefs/sponsor/4/website
https://opencollective.com/sous-chefs/sponsor/5/website
https://opencollective.com/sous-chefs/sponsor/6/website
https://opencollective.com/sous-chefs/sponsor/7/website
https://opencollective.com/sous-chefs/sponsor/8/website
https://opencollective.com/sous-chefs/sponsor/9/website

Dependent cookbooks

yum-epel >= 0.0.0

Contingent cookbooks

erlang Applicable Versions
rabbitmq Applicable Versions

yum-erlang_solutions Cookbook CHANGELOG

This file is used to list changes made in each version of the yum-erlang_solutions cookbook.

2.1.2 - 2021-08-31

  • Standardise files with files in sous-chefs/repo-management

2.1.1 - 2021-06-01

  • Standardise files with files in sous-chefs/repo-management

2.1.0 - 2021-02-05

  • Sous Chefs Adoption
  • Standardise files with files in sous-chefs/repo-management
  • Cookstyle fixes
  • Remove EL6 and add Amazon Linux
  • Switch to using https endpoints and gpgcheck enabled
  • Migrate to InSpec testing

2.0.0 (2018-02-16)

  • Require Chef 12.14+ and remove compat_resource dep
  • Testing improvements
  • Use a SPDX compliant license string

1.0.3 (2016-12-22)

  • Depend on the latest compat_resource cookbook
  • Cookstyle fixes

1.0.2 (2016-12-05)

  • Documentation fixes
  • Avoid deprecation warnings

1.0.1 (2016-11-14)

  • Resolve releasever issues

1.0.0 (2016-09-06)

  • Testing updates
  • Resolve foodcritic warnings
  • Add chef_version metadata
  • Remove support for Chef 11

v0.3.1 (2015-12-01)

  • Removed an attribute case statement that caused the cookbook to fail on RHEL 7.X releases

v0.3.0 (2015-12-01)

  • Added dependency on yum-epel
  • Added integration testing in Travis with kitchen-dokken

v0.2.4 (2015-11-23)

  • Fix setting bool false property values

v0.2.3 (2015-10-28)

  • Fixing Chef 13 nil property deprecation warnings

v0.2.2 (2014-09-22)

  • Add default['yum']['erlang_solutions']['managed'] attribute to control if the repository is managed. Defaults to true.
  • Updated Test Kitchen config to 3.X format
  • Add source_url and issues_url metadata
  • Add supported platforms to metadata
  • Update yum cookbook requirement from ~3.0 to ~3.2
  • Update Chefspec format to 4.X
  • Add contributing, testing, and maintainers docs
  • Update cookbook name references in several places that were from the incorrect cookbook
  • Update and add development dependencies in the Gemfile
  • Add cookbook version and Travis CI badges to the readme
  • Update requirements section in the Readme
  • Add additional platforms to the Kitchen CI config
  • Add Chef standard .rubocop config
  • Add Chef standard chefignore and gitgnore files

v0.2.0 (2014-02-14)

  • Updated test harness

v0.1.4

  • Added CHANGELOG

v0.1.0

  • Initial release

Collaborator Number Metric
            

2.1.2 passed this metric

Contributing File Metric
            

2.1.2 passed this metric

Foodcritic Metric
            

2.1.2 passed this metric

No Binaries Metric
            

2.1.2 passed this metric

Testing File Metric
            

2.1.2 passed this metric

Version Tag Metric
            

2.1.2 passed this metric