Forge Home

chmod_r

Do a chmod -R in puppet

17,581 downloads

13,430 latest version

2.5 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 1.0.0 (latest)
  • 0.2.0 (deleted)
  • 0.1.2
  • 0.1.1
  • 0.1.0
released Aug 28th 2018

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'geoffwilliams-chmod_r', '1.0.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add geoffwilliams-chmod_r
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install geoffwilliams-chmod_r --version 1.0.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

geoffwilliams/chmod_r — version 1.0.0 Aug 28th 2018

Build Status

chmod_r

Table of Contents

  1. Description
  2. Setup - The basics of getting started with chmod_r
  3. Usage - Configuration options and additional functionality
  4. Limitations - OS compatibility, etc.
  5. Development - Guide for contributing to the module

Description

Perform the equivalent of a chmod_r using puppet. Only runs when required to, eg if find tells us that there is at least one file/directory that needs to be chmod'ed.

While the equivalent result is also possible using a file resource in recursive mode, doing so can create a huge number of resources, placing an unnecessary load on the Puppet Master.

This module achieves the same result at the cost of reduced change reporting granularity: A maximum of one change per resource will ever be reported no matter how many underlying files need to have their ownership fixed. This is inline with the default behavior of the underlying chmod system command.

Usage

Notes

  • Directories referred to must already exist on the system
  • If creating these directories with Puppet, you should not specify mode information as this could conflict with the changes made by this module
  • You can pass an array of directories to check and fix recursively for permissions to save typing as long as the want_mode fields are identical
  • If any bit in want_mode is 4 or 6, 1 will be added to allow cd to work when dealing with directories
  • This command doesn't actually use chmod -R, it does a find for files + exec and then a find for directories + exec. This is to allow the above +1 logic to work

Check permissions every puppet run

If your happy for Puppet to update and fix permissions as required, the following code would ensure that /foo and all its directory children have the required permission

chmod_r { "/foo":
  want_mode   => "0600",
}

Check permissions when watched resource changes

If your only ever want to perform fixes in response to a Package update AND observed incorrect ownership, the following code would ensure all /bar and all its children will be set to owner bar, group bar if required after a change to the foobar package. If the package is unchanged, then ownership will not be checked/fixed.

chmod_r { "/bar":
  want_mode   => "0770",
  watch       => Package["foobar"],
}

Limitations

  • Only works on Unix-like OS's
  • It's possible to write code that will result in race conditions using this module, please test your code thoroughly
  • Overlapping chmod_r resources are not detected by the module and must be avoided by the user
  • This module is not supported by Puppet

Development

PRs accepted :)

Testing

This module supports testing using PDQTest.

Test can be executed with:

bundle install
bundle exec pdqtest all

See .travis.yml for a working CI example