Forge Home

uvfs

Module to manage uvfs installations

7,385 downloads

7,232 latest version

4.6 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

  • 0.1.1 (latest)
  • 0.1.0
released Mar 8th 2016
This version is compatible with:
  • ,

Start using this module

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

Add this module to your Puppetfile:

mod 'wafture-uvfs', '0.1.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add wafture-uvfs
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install wafture-uvfs --version 0.1.1

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

wafture/uvfs — version 0.1.1 Mar 8th 2016

puppet-uvfs

travis-cs status

Table of Contents

  1. Module Description - What the module does and why it is useful
  2. Setup - The basics of getting started with uvfs
  3. Usage - Configuration options and additional functionality
  4. Reference - An under-the-hood peek at what the module is doing and how
  5. Limitations - OS compatibility, etc.
  6. Development - Guide for contributing to the module

Module Description

The UVFS module installs UVFS, the userspace filesystem kit for Linux.

Setup

Beginning with UVFS

To install UVFS with the default options:

include '::uvfs'

To customize options, such as the install directory or the version to install, you must also pass the appropriate parameters:

class { '::uvfs':
  version     => '2.0.6',
  install_dir => '/opt/iw-tools',
}

Usage

Interactions for UVFS are all done via ::uvfs.

Install UVFS

To install an older version of UVFS in a non-default directory:

class { '::uvfs':
  version     => '2.0.6',
  install_dir => '/opt/iw-tools',
}

Reference

Classes

Public classes

  • uvfs: Installs UVFS

Private classes

  • uvfs::base::install: Installs OpenDeploy Base.
  • uvfs::base::dependencies: Installs package dependencies for UVFS.

Parameters

uvfs

version

Version of UVFS to install. Valid values are valid release numbers from SF. Default is 2.0.7.

install_dir

Location, as a fully qualified path, on the filesystem to install UVFS.

Using install_dir => '/opt/iw-tools' will create the following structure:

/opt/iw-tools
    └── uvfs_2.0.7/
        └── <files installed>

Valid values are valid system paths. Defaults to /opt/iw-tools.

Limitations

This module has been tested on:

  • RedHat Enterprise Linux 6, 7
  • CentOS 6, 7

Testing on other platforms is nonsensical as the vendor only supports the above systems

Development

See something you want to improve? Fork, clone, work, commit, and PR. Yay OSS!

Authors

This module was created and maintained by Nick Anderson.