Forge Home

ipv4_octet

A small(ish) sample Puppet function to return a given octet from an IP Address

10,182 downloads

8,147 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.0.3 (latest)
  • 0.0.2
released Nov 27th 2015
This version is compatible with:
  • RedHat, Ubuntu, Debian, Fedora, CentOS

Start using this module

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

Add this module to your Puppetfile:

mod 'deanwilson-ipv4_octet', '0.0.3'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add deanwilson-ipv4_octet
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install deanwilson-ipv4_octet --version 0.0.3

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

deanwilson/ipv4_octet — version 0.0.3 Nov 27th 2015

puppet-ipv4_octet

A small(ish) sample Puppet function to return a given octet from an IP Address

Returns the given octet of an IP Address.

$first = ipv4_octet('10.11.12.13', 0) # returns 10
$last  = ipv4_octet('10.11.12.13', 3) # returns 13

This function does not yet allow you to extract subselections - such as [1..3]

It has a dependency on puppetlabs-stdlib to work.

License

Apache 2.0 - Dean Wilson