Manage file and directory permissions recursively in a much more performant way than using recurse => true
.
When using Puppet, it's common to want to ensure the permissions, owner, or group of a large amount of files are correct. Usually because some application needs to read or write those files or just to make sure that they are set with secure permissions. A normal way to do that is with a file resource and the recurse => true
attribute.
However, using a file resource with recurse => true
is a recipe for disaster. If /my_dir
contains 1000's of files, that means Puppet will add 1000's of file
resources to the catalog and report. This causes agent runs and performance issues with storing those catalogs and reports in PuppetDB.
This module provides a defined type that manages permissions, owner, and group for files using the find
, chmod
, chown
, and chgrp
commands behind the scenes to quickly determine if files need to be updated. This is a much faster operation than what Puppet would natively do, and it results in only one extra resource in the catalog, not (possibly) thousands.
# The old way of using recurse => true, like this:
file { '/opt/app':
ensure => directory,
owner => 'app_x',
group => 'app_x',
mode => '0640',
recurse => true,
}
# Becomes much more performant by doing this:
file { '/opt/app':
ensure => directory,
}
recursive_file_permissions { '/opt/app':
file_mode => '0640',
dir_mode => '0750',
owner => 'app_x',
group => 'app_x',
}
The requirements for this module are:
- A non-Windows operating system for the Puppet agent.
- The system must have
find
,chmod
,chown
, andchgrp
installed and in the system path.
Here's an example of setting file modes, directory modes, owner, and group:
recursive_file_permissions { '/my_dir':
file_mode => '0644',
dir_mode => '0755',
owner => 'me',
group => 'us',
}
Note: The mode of files and directories must be specified separately and correctly. This module does not automatically add the execute bit to directory modes, unlike the
file
resource.
You do not need to include all of the attributes but you must include at least one, otherwise, there wouldn't be anything for it to manage.
For example, if you only want to set the owner, do this:
recursive_file_permissions { '/my_dir':
owner => 'me',
}
PRs welcome.