Forge Home

jail

Jail management with Puppet

18,983 downloads

4,782 latest version

3.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

  • 4.0.0 (latest)
  • 3.1.0
  • 3.0.0
  • 2.1.1
  • 2.0.9
  • 2.0.8
  • 2.0.7
  • 2.0.6
  • 2.0.4
  • 2.0.3
  • 2.0.2
  • 2.0.1
  • 2.0.0
  • 0.0.3
  • 0.0.1
released Nov 28th 2015
This version is compatible with:
  • Puppet Enterprise >= 3.2.0 < 3.8.0
  • Puppet 3.x
This module has been deprecated by its author since Jun 15th 2021.

The author has suggested puppet-jail as its replacement.

Start using this module

Documentation

zleslie/jail — version 2.0.3 Nov 28th 2015

FreeBSD Jail management with Puppet

Build Status

Manage FreeBSD jails with Puppet, leveraging iocage for jail management.

Setup

This module expects to be the only jail manager on a given system. Each system where jails will be managed needs to include the jail::setup class as well.

include jail::setup

This simply installs 'iocage' and removes '/etc/jail.conf'.

This allows the type to use the correct jail without having to specify the pool on each jail.

A simple jail

jail { 'myjail1':
  ensure   => present,
  state    => 'up',
  ip4_addr => 'em0|10.0.0.10/24',
  ip6_addr => 'em0|fc00::10/64',
  hostname => 'myjail1.example.com',
  boot     => 'on'
}

Note the ip4_addr and the ip6_addr properties take an interface name and an IP address seperated by a pipe character. This value is passed directly to iocage(8). You may wish to read the man page.