Version information
released Jul 21st 2016
This version is compatible with:
- ,
Start using this module
Add this module to your Puppetfile:
mod 'puppet-rhsm', '0.3.0'
Learn more about managing modules with a PuppetfileDocumentation
puppet/rhsm — version 0.3.0 Jul 21st 2016
rhsm
Table of Contents
- Overview
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with rhsm
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
Overview
This module registers your systems with Redhat Subscription Management
Setup
Just declare the module with parameters, or load the data from Hiera.
Usage
class { 'rhsm':
rh_user => 'myuser',
rh_password => 'mypassword',
}
To attach the system to a specific pool (can be found on a registered system with 'subscription-manager list --available'):
class { 'rhsm':
rh_user => 'myuser',
rh_password => 'mypassword',
pool => 'the_pool_id'
}
Or, with Hiera: (recommended)
include rhsm
Hierafile:
rhsm::rh_user: myuser
rhsm::rh_password: mypassword
Limitations
Well, only RedHat is supported :)
Dependencies
- puppetlabs-stdlib (>= 1.0.0 < 5.0.0)