ipv4_octet
A small(ish) sample Puppet function to return a given octet from an IP Address
Version information
released Nov 27th 2015
This version is compatible with:
- RedHat, Ubuntu, Debian, Fedora, CentOS
Start using this module
Add this module to your Puppetfile:
mod 'deanwilson-ipv4_octet', '0.0.3'
Learn more about managing modules with a PuppetfileDocumentation
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
Dependencies
- puppetlabs/stdlib (>= 4.2.2 <5.0.0)
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.