Forge Home

netrc

Puppet .netrc management

21,989 downloads

20,065 latest version

4.1 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.2 (latest)
  • 0.1.1
  • 0.1.0 (deleted)
released Jun 17th 2016
This version is compatible with:
  • Puppet Enterprise 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
  • Puppet >= 3.2.0 < 5.0.0
  • , ,

Start using this module

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

Add this module to your Puppetfile:

mod 'codemanagement-netrc', '0.1.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add codemanagement-netrc
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install codemanagement-netrc --version 0.1.2

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

codemanagement/netrc — version 0.1.2 Jun 17th 2016

Build
Status

Table of Contents

  1. Overview
  2. Module Description - What the module does and why it is useful
  3. Usage
  4. Reference - An under-the-hood peek at what the module is doing and how
  5. Limitations - OS compatibility, etc.
  6. Dependencies
  7. Contributors

Overview

Puppet module for the deployment of GNU .netrc files. Supports Puppet3 & Puppet4

Module Description

This module provides an easy way to manage and deploy machine credentials to user specific .netrc files.

Usage

class { 'netrc':
   user => 'myuser',
   path => '/home/myuser/.netrc',
}

netrc::machine { 'ftp.foo.com':
   netrc_path => '/home/myuser/.netrc',
   login      => 'remote_user',
   password   => 'hunter5',
}

Reference

Classes

Public Classes

  • netrc: Top level configuration of .netrc file
Parameters

The following parameters are available in netrc:

user

Required Owner of the .netrc file to be created

path

Required Absolute path of the .netrc file to be created.

group

Group of the .netrc file to be created. Defaults to $user

Public Classes

The netrc module has no private classes.

Types

netrc::machine

Represents the login details for a single machine entry in a .netrc file

Parameters
machine

Required Remote machine which the credentials are for. Default: $name

netrc_path

Required Absolute path to the .netrc file in which to store these credentials. Must be the same as that defined in the netrc resource

login

Required Username on remote machine

password

Required Password on remote machine

Limitations

  • Supports only one .netrc file per machine

Dependencies

netrc module depends on the following

Contributors

List of contributors can be found at: https://github.com/code-management/netrc/graphs/contributors