Skip to content

puppetlabs/puppetlabs-mount_core

Folders and files

NameName
Last commit message
Last commit date
Feb 10, 2023
Jun 4, 2024
Jun 4, 2024
Oct 24, 2019
Feb 13, 2024
Nov 29, 2018
Jul 24, 2024
Jul 11, 2018
Jan 8, 2019
Jan 10, 2024
Jan 10, 2024
Oct 24, 2019
Jul 11, 2018
Jun 4, 2024
Jul 24, 2024
Jul 11, 2018
Mar 6, 2024
Jan 24, 2022
Nov 19, 2024
Jan 9, 2019
Sep 10, 2020
Mar 4, 2024
Feb 14, 2023
Jun 4, 2024
Oct 24, 2019
Mar 21, 2025
Oct 4, 2021

mount_core

Modules Status Modules Status Modules Status Modules Status

Table of Contents

  1. Description
  2. Setup - The basics of getting started with mount_core
  3. Usage - Configuration options and additional functionality
  4. Reference - An under-the-hook peek at what the module is doing and how
  5. Development - Guide for contributing to the module

Description

The mount_core module manages mounted filesystems and mount tables. The module has some limitations, and you may be better off using the mount_providers module, which can manage mountpoints and mounttab resources independently.

Setup

What mount_core affects

The module can mount and unmount filesystems, and manage mount tables such as /etc/fstab, /etc/vfstab, or /etc/filesystems depending on your operating system.

Mount resources can respond to refresh events, and can remount a filesystem in response to an event from another resource.

Mount resources automatically create relationships with directories that are either ancestors of the mounted directory or children. This way Puppet will automatically create ancestor directories before the mount point, and will do that before managing directories and files within the mounted directory.

Usage

To mount the device /dev/foo at /mnt/foo as read-only, use the following code:

mount { '/mnt/foo':
  ensure  => 'mounted',
  device  => '/dev/foo',
  fstype  => 'ext3',
  options => 'ro',
}

Reference

Please see REFERENCE.md for the reference documentation.

This module is documented using Puppet Strings.

For a quick primer on how Strings works, please see this blog post or the README.md for Puppet Strings.

To generate documentation locally, run the following command:

bundle install
bundle exec puppet strings generate ./lib/**/*.rb

This command will create a browsable _index.html file in the doc directory. The references available here are all generated from YARD-style comments embedded in the code base. When any development happens on this module, the impacted documentation should also be updated.

Development

Puppet Labs modules on the Puppet Forge are open projects, and community contributions are essential for keeping them great. We can't access the huge number of platforms and myriad of hardware, software, and deployment configurations that Puppet is intended to serve.

We want to keep it as easy as possible to contribute changes so that our modules work in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things.

For more information, see our module contribution guide.