Scroll to navigation

Hostfile::Manager(3pm) User Contributed Perl Documentation Hostfile::Manager(3pm)

NAME

Hostfile::Manager - Manage a hostfile by composing multiple fragments into a whole.

SYNOPSIS

        use Hostfile::Manager;
        $manager = Hostfile::Manager->new;
        $manager->enable_fragment($fragment_name);
        $manager->write_hostfile;

ACCESSORS

Defines the prefix that will be searched for hostfile fragments. Defaults to '/etc/hostfiles/'.
Defines the path to the hostfile to manage. Defaults to '/etc/hosts'.
The contents of the hostfile under management.
The available hostfile fragments.
A list of the names of available fragments.
The contents of an individual hostfile fragment.

METHODS

Create a new manager instance. Available options are path_prefix and hostfile_path, listed in the ACCESSORS section.
Write the contents of the hostfile to disk.
Test whether a named fragment is enabled in the hostfile under management.
Enable a named fragment. If the fragment is currently enabled, it will be disabled first, removing any modifications that may have been made out-of-band.
Disable a named fragment.
Enable a fragment if it is disabled, disable it otherwise.
Returns a string indicating the current status of a named fragment.
"+"
The named fragment is enabled.
"*"
The named fragment is enabled and has been modified in the sourced hostfile.
" "
The named fragment is not enabled.

LICENSE

Copyright (c) 2010-11,2018 Anthony J. Mirabella. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

Anthony J. Mirabella <mirabeaj AT gmail DOT com>

2021-01-07 perl v5.32.0