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

resolver (31) Versions 4.0.2

Configures /etc/resolv.conf via attributes

Policyfile
Berkshelf
Knife
cookbook 'resolver', '= 4.0.2', :supermarket
cookbook 'resolver', '= 4.0.2'
knife supermarket install resolver
knife supermarket download resolver
README
Dependencies
Changelog
Quality 100%

resolver Cookbook

Cookbook Version
CI State
OpenCollective
OpenCollective
License

Configures /etc/resolv.conf, unless the nameservers attribute is empty. Search will be excluded if empty.

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

  • AIX
  • Debian/Ubuntu
  • RHEL/CentOS/Scientific/Amazon/Oracle
  • Fedora
  • FreeBSD/OpenBSD
  • macOS
  • Solaris
  • openSUSE / SUSE Enterprise

Chef

  • Chef 15.3+

Resources

  • [resolver_config](documentation/resolver_config.md)
  • [resolver_systemd_resolved_config](documentation/resolver_systemd_resolved_config.md)

Usage

It is recommended to create a project or organization specific wrapper cookbook and add the desired custom resources to the run list of a node.

Example of configuring a node with nameservers, a search list and a local domain.

resolver_config '/etc/resolv.conf' do
  nameservers ['1.1.1.1', '1.0.0.1']
  domain 'test.com'
  search ['test1.com', 'test2.com']
  options(
    'timeout' => 2
  )
end

The resulting /etc/resolv.conf will look like:

#
# Generated by Chef Infra for dokken
# Do NOT modify this file by hand, changes will be overwritten.
#

domain test.com
search test1.com test2.com
nameserver 1.1.1.1
nameserver 1.0.0.1
options timeout:2

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

resolver Cookbook CHANGELOG

This file is used to list changes made in each version of the resolver cookbook.

4.0.2 - 2021-08-30

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

4.0.1 - 2021-06-01

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

4.0.0 - 2021-05-26

  • Switch to unified_mode
  • Update chef_version to only support Chef 15.3 or later

3.0.4 - 2021-03-03

  • Fixed typo in the CacheFromLocalhost parameter in the systemd-resolved template

3.0.3 - 2021-02-25

  • Fix blog link for wrapper cookbooks

3.0.2 - 2021-02-25

  • Merge resolv.conf options & remove extra colons

3.0.1 - 2021-02-20

  • Update Chef -> Chef Infra

3.0.0 - 2021-02-18

  • Port recipes and attributes to resources
  • Add support for overriding system configuration methods to resolver_config
  • Add systemd-resolved support

2.2.0 - 2021-02-10

  • Sous Chefs Adoption
  • Add InSpec Tests
  • Remove Deprecated Platforms, Centos 6, Ubuntu 16.04, opensuse-42, fedora-29

2.1.0 (2018-07-18)

  • Test with Local Delivery instead of Rake
  • Update Apache license string in metadata
  • the search stanza should be an array rather than a single element. resolv.conf search allows up to six search domains to be defined. Have updated the recipes with some rules (no more than 6 domains or 256 chars), change the ['resolver']['search'] into an array and changed teh template unless block to search for an empty array instead
  • add aix support

2.0.1 (2017-02-24)

  • Fix compatibility with old chef 12 clients
  • Remove old recipe from the metadata
  • Call out SUSE support in the readme and metadata

2.0.0 (2016-09-07)

  • add support for 'domain' resolv.conf key
  • Switch to root group to support AIX/OS X/FreeBSD
  • Removed the from_server_role recipe. This should be done with a wrapper cookbook instead
  • Add testing with Travis CI and use kitchen-dokken for integration testing
  • Add basic Chefspec testing
  • Add integration testing with Test Kitchen
  • Add Berksfile
  • Update contributing, testing and maintainers docs
  • Improve the readme with chef/platform Requirements
  • Add a Rakefile for simplified testing
  • Use strings for file modes to preserve the leading 0s
  • Add source_url, issue_url and chef_version to the metadata
  • Remove attributes from the metadata since they weren't up to date

v1.3.0 (2015-10-16)

  • Add rubocop file and resolve all rubocop warnings
  • Update the contributing doc to match the new process
  • Use strings for file modes to preserve the leading 0s
  • Add support the domain resolv.conf config option
  • Add a gitignore and chefignore file
  • Added a header to the resolv.conf file stating that chef edited the file
  • Use the Ohai 'root_group' attribute for the config file to support non-Linux *nix platforms. This raises the minimum required version of Chef to 11.14.0 with Ohai 7.2.0.

v1.2.0 (2014-10-16)

  • [#11] Improve safety and sanity of cookbook
  • [#12] README update
  • [#14] Exclude search in template if attribute is empty

v1.1.4

v1.1.2

Bug

  • [COOK-2977]: resolver cookbook has foodcritic failures

v1.1.0

  • [COOK-1242] - collect nameservers using a server role, adds from_server_role recipe

v1.0.2

  • 'node' went missing in the template.

v1.0.0

  • [COOK-1089] - accept resolver options via attributes
  • [COOK-1109] - return from resolver recipe if no nameserver attribute is set so resolv.conf doesn't get broken during the run
  • [COOK-1150] - drop the empty element from the nameserver attribute array

Collaborator Number Metric
            

4.0.2 passed this metric

Contributing File Metric
            

4.0.2 passed this metric

Foodcritic Metric
            

4.0.2 passed this metric

No Binaries Metric
            

4.0.2 passed this metric

Testing File Metric
            

4.0.2 passed this metric

Version Tag Metric
            

4.0.2 passed this metric