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

nfs (54) Versions 5.0.4

Installs and configures NFS, and NFS exports

Policyfile
Berkshelf
Knife
cookbook 'nfs', '= 5.0.4', :supermarket
cookbook 'nfs', '= 5.0.4'
knife supermarket install nfs
knife supermarket download nfs
README
Dependencies
Changelog
Quality 50%

nfs cookbook

Cookbook Version
CI State
OpenCollective
OpenCollective
License

Description

Installs and configures NFS client and server components

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

Should work on any RHEL 7+, Debian 10+, Ubuntu 18.04+ distributions.

This cookbook depends on the line cookbook

Attributes

  • nfs['packages']

    • Case switch in attributes to choose NFS client packages dependent on platform.
  • nfs['service']

    • ['config'] - only set on Debian/Ubuntu to work around loose systemd dependencies on this platform family - debian: nfs-config.service
    • ['portmap'] - the rpcbind service - default: nfs-client.target
    • ['lock'] - the rpc-statd service - default: nfs-client.target, debian: rpc-statd.service
    • ['server'] - the server component, - default: nfs-server.service, debian: nfs-kernel-server.service
    • ['idmap'] - the NFSv4 idmap component
  • nfs['config']

    • client_templates - templates to iterate through on client systems, chosen by platform
    • server_template - Per-platform case switch in common nfs.erb template. This string should be set to where the main NFS server configuration file should be placed.
    • idmap_template - Path to idmapd.conf used in nfs::client4 and nfs::server4 recipes.
  • nfs['threads'] - Number of nfsd threads to run. Default 8 on Linux, 24 on FreeBSD. Set to 0, to disable.

  • nfs['port']

    • ['statd'] = Listen port for statd, default 32765
    • ['statd_out'] = Outgoing port for statd, default 32766
    • ['mountd'] = Listen port for mountd, default 32767
    • ['lockd'] = Listen port for lockd, default 32768
  • nfs['v2'], nfs['v3'], nfs['v4']

    • Set to yes or no to turn on/off NFS protocol level v2, or v3.
    • Defaults to nil, deferring to the default behavior provided by running kernel.
  • nfs['mountd_flags'] - BSD launch options for mountd.

  • nfs['server_flags'] - BSD launch options for nfsd.

  • nfs['idmap']

    • Attributes specific to idmap template and service.
    • ['domain'] - Domain for idmap service, defaults to node['domain']
    • ['pipefs_directory'] - platform-specific location of Pipefs-Directory
    • ['user'] - effective user for idmap service, default nobody.
    • ['group'] - effective group for idmap service, default nogroup.

Usage

To install the NFS components for a client system, simply add nfs to the run list.

name "base"
description "Role applied to all systems"
run_list [ "nfs" ]

Then in an nfs_server.rb role that is applied to NFS servers:

name "nfs_server"
description "Role applied to the system that should be an NFS server."
override_attributes(
  "nfs" => {
    "packages" => [ "portmap", "nfs-common", "nfs-kernel-server" ],
    "port" => {
      "statd" => 32765,
      "statd_out" => 32766,
      "mountd" => 32767,
      "lockd" => 32768
    }
  }
)
run_list [ "nfs::server" ]

nfs_export resource Usage

Applications or other cookbooks can use the nfs_export resource to add exports:

nfs_export "/exports" do
  network '10.0.0.0/8'
  writeable false
  sync true
  options ['no_root_squash']
end

The default parameters for the nfs_export LWRP are as follows

  • directory

    • directory you wish to export
    • defaults to resource name
  • network

    • a CIDR, IP address, or wildcard (*)
    • requires an option
    • can be a string for a single address or an array of networks
  • writeable

    • ro/rw export option
    • defaults to false
  • sync

    • synchronous/asynchronous export option
    • defaults to true
  • anonuser

    • user mapping for anonymous users
    • the user's UID will be retrieved from /etc/passwd for the anonuid=x option
    • defaults to nil (no mapping)
  • anongroup

    • group mapping for anonymous users
    • the group's GID will be retrieved from /etc/group for the anongid=x option
    • defaults to nil (no mapping)
  • options

    • additional export options as an array, excluding the parameterized sync/async, ro/rw options, and anoymous mappings
    • defaults to root_squash

nfs::default recipe

The default recipe installs and configures the common components for an NFS client, at an effective protocol level of
NFSv3. The Chef resource logic for this is in the nfs::_common recipe, with platform-specific conditional defaults set
in the default attributes file.

nfs::client4 recipe

Includes the logic from nfs::_common, and also configures and installs the idmap service to provide an effective
protocol level of NFSv4. Effectively the same as running both nfs::_common and nfs::_idmap.

nfs::server recipe

The server recipe includes the common client components from nfs::_common. This also configures and installs the
platform-specific server services for an effective protocol level of NFSv3.

nfs::server4 recipe

This recipe includes the common client components from nfs::_common. It also configures and installs the
platform-specific server services for an effective protocol level of NFSv4. Effectively the same as running
nfs::_common and nfs::_idmap and nfs::server.

nfs::undo recipe

Does your freshly kickstarted/preseeded system come with NFS, when you didn't ask for NFS? This recipe inspired by the
annoyances cookbook, will run once to remove NFS from the system. Use a knife command to remove NFS components from your
system like so.

knife run_list add $NODE nfs::undo

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

line >= 0.0.0

Contingent cookbooks

arcgis-enterprise Applicable Versions
arcgis-repository Applicable Versions
chef-ha Applicable Versions
clonezillalive Applicable Versions
cloudstack_wrapper Applicable Versions
dry-run-lies Applicable Versions
hdp-cloud Applicable Versions
magentostack Applicable Versions
media Applicable Versions
opennebula_ng Applicable Versions

nfs Cookbook CHANGELOG

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

5.0.4 - 2023-02-14

5.0.3 - 2023-02-13

5.0.2 - 2022-12-20

  • Enable Ubuntu 22.04 server vagrant testing

5.0.1 - 2022-12-20

  • Add support for Ubuntu 22.04
  • Remove EOL platforms: CentOS 8, Debian 9
  • Convert from delivery to newer CI workflow
  • MDL fixes
  • Switch to using MacOS 12 runners for VM CI tests

5.0.0 - 2021-11-01

  • Sous Chefs adoption
  • Loosen version pin on line cookbook
  • Fix CentOS 8+ and Fedora and properly manage /etc/nfs.conf
  • Add fsid property to the nfs_export resource
  • Fix services that are loaded
  • Switch to using kernel_module resource for lockd module
  • Fix idempotency with sysctl resource usage

4.0.0 - 2021-09-11

This release adds support for Chef 17 and modernizes syntax and tooling.

  • BREAKING
    • Drop support for Chef version < 15.3
  • Chef 17 compatibility
    • Enable unified_mode for custom resources
  • Cookbook Cleanup
    • Cookstyle fixes
    • LWRP -> custom resource conversion
    • Update to new spec test format
    • Move test cookbook to standard location
    • Move kitchen files to standard location
    • Convert integration testing to InSpec

3.0.0 - 2020-11-04

This release unifies systemd based NFS systems. Much of the platform branching has been removed dropping support for System V initialized NFS servers.

  • BREAKING

    • Added
      • Debian 10
      • Ubuntu 18.04
      • Ubuntu 20.04
      • CentOS/RHEL 8
    • Dropped
      • Debian 8
      • Debian 9
      • CentOS/RHEL 5
      • CentOS/RHEL 6
      • Ubuntu 14.04
    • Iffy (not supported)
      • SUSE
      • FreeBSD
  • @rexcsn - corrected nfs-idmap service name

  • Set default_env so exportfs can be found under Chef 14.2+

2.6.4 - 2020-02-27

  • @Vancelot11 - added CentOS 8 support

2.6.3 - 2018-11-07

  • Small tweak to Chef 13 compatible sysctl resources

2.6.2 - 2018-08-27

  • Set lockd ports on Debian 8 and Ubuntu 14.04 via sysctl settings.

2.6.1 - 2018-08-24

  • Updated to support Chef 14+ with builtin sysctl resource
  • Dropped sysctl cookbook dependency, but maintained backwards compatibility by using file/execute resources for Chef 13

2.6.0 - 2018-08-23

  • #107 - Bump line dependency version to 2.x

2.5.1 - 2018-04-27

  • Set minimum supported Chef to 13.2.20
  • Bump line and sysctl dependency versions

2.5.0 - 2017-12-05

  • @chuhn - Add Debian Stretch support
  • Updates to raise Supermarket metrics

2.4.1 - 2017-08-08

  • Correct #95 regression on v2.4.0

2.4.0 - 2017-08-07

  • Fixes #99 - Remove include_attribute 'sysctl' to maintain compatibility with sysctl cookbook changes.

3.3.3 - 2017-05-08

  • Remove trailing newline from export line. Closes #95

2.3.2 - 2017-01-10

  • Fixes #93 - nfs-idmap.service unit file depends on nfs-server.service provided by nfs-kernel-server package on Ubuntu 16.04.

2.3.1 - 2016-12-09

  • Fixes #91 - nfs-config.service needs managed to apply fixed port configuration on Ubuntu 16.04 and CentOS 7.2

2.3.0 - 2016-10-24

  • Fix #89 - Set sysctl parameters, only if nfs kernel module is loaded.
  • Closes #76 - Remove service provider mapping, deferring to Chef 12 provider helpers.
  • Fixes #81 - Re-instate status check.

2.2.12 - 2016-10-07

  • @nunukim
    • fix invalid /etc/defaults/nfs-kernel-server on Debian

2.2.11 - 2016-09-22

  • Ignore sysctl for OpenVZ/Virtuozzo
  • Start rpcbind service in RHEL 7 prior to nfs server

2.2.10 - 2016-08-11

  • Fix #69 - Logical condition error on CentOS 7
    • reported by @dougalb

2.2.9 - 2016-08-11

  • @sspans

    • prevent resource duplication for shared configs
    • Rubocop fix-ups
  • @hrak

    • Use systemd provider for Ubuntu >= 15.04
  • @rlanore

    • Add knob to disable nfs v4

2.2.8 - 2016-04-27

  • @zivagolee - Chef 11 backwards compatability for issues/source urls.

2.2.7 - 2016-04-21

  • @gsreynolds

    • Add explicit service provider attributes for Debian, including Debian 8.
  • @hrak

    • Use package portmap instead of rpcbind on Ubuntu <=13.04
    • Correct service name for Ubuntu <=13.04 = 'portmap', >=13.10 = 'rpcbind'

2.2.6 - 2015-10-14

  • @davidgiesberg - fixed an issue with chef-client 12.5 in #67

2.2.5 - 2015-08-11

  • @yoshiwaan - improved Amazon Linux platform support.
    • Also added tests, and example .kitchen.yml.aws file.

2.2.4 - 2015-07-09

  • @shortgun corrected an Amazon Linux regression introduced by #57
  • Cleaned out redundant BATS tests, in favor of Serverspec tests.
  • Cleaned up Serverspec tests introduced by #57 to better reflect expected behavior.

2.2.3 - 2015-07-08

  • @joerocklin added CentOS 7 support, and tests, in #57
  • @sdrycroft added whitespace padding to replacement pattern in #62

2.2.2 - 2015-07-01

  • Make service_provider edge cases an Ubuntu-specific hack.
    • More feedback may be needed on Debian platforms/versions
  • CentOS platforms seem to detect service_provider fine, without explicitly setting one.
  • Remove windows/solaris guard regression, because this should not be needed without overriding the service provider

2.2.1 - 2015-06-29

  • Partial revert of service_provider Ubuntu hacks.

2.2.0 - 2015-06-29

  • De-kludge service_provider hacks
  • Add pattern parameter to looped service resources

2.1.0 - 2015-02-13

  • @lmickh LWRP stairsteps anonids multiplicatively. #46
  • @vgirnet added SLES init script failsafe. closes #47
  • @StFS added EL7 service names. closes #39 #41 #49
  • @stevenolen remove installation of nfs-kernel-server for debian platform. closes #43
  • ChefSpec fixups
    • Runner deprecated.
    • Generic chefspec 0.6.1 platform has no service providers (i.e. sysvinit) in Chef.
    • FreeBSD mapping broken chef/chef#2383.

2.0.0 - 2014-06-14

  • @jessp01 added rquotad support, Issue #34
  • @jessp01 added NFS4 support, Issue #35
  • @dudyk Hash Rockets, Issue #36
  • @soul-rebel, Issue #37
  • @kjtanaka, notification timing, Issue #38
  • rework issue #35 to be cross-platform and backwards compatible
  • fix tests, verify behavior
  • Update documentation

Potentially Breaking Changes

Support for some versions of Ubuntu support unverified. Please help cookbook maintainers by submitting fauxhai stub data for your preferred platforms.

1.0.0 - 2014-05-20

  • Removed unused variables from provider
  • NFS server template refactored into singular template to take advantage of added features like nfs['v4'] and nfs['threads']
  • @eric-tucker added Amazon support
  • @mvollrath added Ubuntu 13.10 support
  • @JonathanSerafini added FreeBSD support
  • @gswallow added an nfs['threads'] attribute
  • @brint added array support for network LWRP parameter
  • Tests
    • @stuart12 added debian to kitchen.ci platforms
    • Chefspec unit test coverage
    • BATS integration tests
    • Rubocop linting

0.5.0 - 2013-09-06

  • @CloCkWeRX - LWRP multi-line fix
  • @walbenzi - toggle-able nfs protocol level 2, or 3

    • defer to default proto level, and default behavior according to installed kernel
    • Add attributes to README
  • @ranxxerox & @reoring - Debian wheezy support added

0.4.2 - 2013-07-16

  • Remove nfs::undo only upon conflict in run_list

0.4.1 - 2013-06-24

  • Community site version does not match cb on github.

0.4.0 - 2013-06-06

  • Add SLES 11 support.
  • Handle non-existent exports.
  • Re-order service/template.
  • Added attributes to LWRP for anonymous user and group mapping.
  • Removed deprecated exports documentation.
  • Add test-kitchen skeleton

0.3.1 - 2013-01-14

  • Correct LWRP behavior for empty exports file via @bryanwb
  • Corrected lint warnings:

    • FC043: Prefer new notification syntax: ./recipes/default.rb:40
    • FC043: Prefer new notification syntax: ./recipes/server.rb:35

0.3.0 - 2012-12-10

@someara exports LWRP refactor

  • Breaking changes
    • Deprecated ~nfs['exports']~ attribute
    • remove exports recipe hack
  • refactored provider to execute in new run_context
  • update notification timings on exports resources
  • add service status to recipes
  • dependency and integration with line editing cookbook

0.2.8 - 2012-11-28

  • Debian family attribute correction
  • Use portmap service when using the portmap package

0.2.7 - 2012-09-26

  • Documentation corrections
    • correct node.nfs.port references
    • correct run_list symtax

0.2.6 - 2012-08-14

  • Force float in platform_version conditional

0.2.5 - 2012-08-13

Ubuntu service names

  • Fix Ubuntu 11.10 edge-case reported by Andrea Campi
  • Update test cases

0.2.4 - 2012-06-13

Attribute typo for Debian

  • Correct typo in attributes
  • Add attribute testing for config templates
  • Add /etc/exports grep for better idempotency guard

0.2.3 - 2012-05-24

  • Fix service action typo in nfs::undo

0.2.2 - 2012-05-22

  • [annoyance] Add run once nfs::undo recipe to stop and remove all nfs components
  • Correct export duplication check in LWRP
  • Re-factor attributes, and introduce Ubuntu 12+ edge cases
  • Add testing artefacts for Travis CI integration

0.2.0 - 2012-05-01

  • Add nfs_export LWRP, thanks Michael Ivey from Riot Games for the contribution
  • Update README documentation, and add CHANGELOG

0.1.0 - 2012-04-17

  • Re-factor NFS cookbook
  • Add edge cases for RHEL6, thanks Bryan Berry for reporting and testing
  • Filter-branched into cookbook-nfs repo

0.0.6 - 2011-07-08

  • Add NFS export support
  • Update documentation
  • First community site release

0.0.4 - 2011-07-01

  • Initial version with RHEL/CentOS/Debian/Ubuntu support
  • Thanks to Glenn Pratt for testing on Debian family distros

Collaborator Number Metric
            

5.0.4 passed this metric

Contributing File Metric
            

5.0.4 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file

Cookstyle Metric
            

5.0.4 passed this metric

No Binaries Metric
            

5.0.4 passed this metric

Testing File Metric
            

5.0.4 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file

Version Tag Metric
            

5.0.4 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number