The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

FreeBSD::Jails - Get the list of running Jails in a FreeBSD system

SYNOPSIS

 my $jails = FreeBSD::Jails::get_jails ; 

DESCRIPTION

This is a simple module to query a FreeBSD system for the list of running jails. Unfortunately there isn't a good way to call the jail_get system call with pure Perl, so a little piece of C code is required to make this possible.

METHODS

get_jails

Returns a reference to a hash whose keys are jail ids (i.e. integers) and values are the names of the jails.

AUTHOR

Athanasios Douitsis <aduitsis@cpan.org>

SUPPORT

Please open a ticket at https://github.com/aduitsis/FreeBSD-Jails.

I am new to XS, so unforeseen bugs or a small memory leak may be present in the module. Caveat emptor.

COPYRIGHT & LICENSE

Copyright 2015 Athanasios Douitsis, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.