Forge Home

bi_ndenv

Puppet management for ndenv

11,129 downloads

8,469 latest version

2.8 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.0.16 (latest)
  • 0.0.15
  • 0.0.14
  • 0.0.13
  • 0.0.12
  • 0.0.11
  • 0.0.10
  • 0.0.9
  • 0.0.8
  • 0.0.7
  • 0.0.6
released Jul 13th 2015
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 'bi-bi_ndenv', '0.0.16'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add bi-bi_ndenv
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install bi-bi_ndenv --version 0.0.16

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

bi/bi_ndenv — version 0.0.16 Jul 13th 2015

Table of Contents

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

Overview

This modules has to main purposes:

  • Manage the static data associated with the ndenv package
  • Provide a wrapper around binaries in the ndenv package that are useful inside Puppet configuration

Module Description

The static data associated with the binaries contained in the ndenv package are stored in a puppet module data Hiera store. This allows higer level Hiera lookups to override binary paths, configuration files, etc...

Setup

puppet module install bi-bi_ndenv -i /path/to/moudles

Usage

To install a nodejs version:


define my_define() {
    bi_ndenv::version { 'v0.10.38':
        user => 'some_user',
        ensure => 'present',
    }
}

To install a ndenv version file:


define my_define() {
    file { '/project_dir':
        ensure => 'directory',
        owner => 'user',
        group => 'user',
    }
    ->
    bi_ndenv::version_file { '/project_dir':
        owner => 'user',
        group => 'user',
        version => 'v0.10.38',
        ensure => 'present',
    }
}

Reference

For more information see the projects wiki.

Limitations

Development

For more information see the projects wiki.