Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

app::clusterssh::config(3pm) [debian man page]

App::ClusterSSH::Config(3pm)				User Contributed Perl Documentation			      App::ClusterSSH::Config(3pm)

NAME
ClusterSSH::Config - Object representing application configuration SYNOPSIS
DESCRIPTION
Object representing application configuration METHODS
$host=ClusterSSH::Config->new ({ }) Create a new configuration object. $config->parse_config_file('<filename>'); Read in configuration from given filename $config->validate_args(); Validate and apply all configuration loaded at this point $path = $config->find_binary('<name>'); Locate the binary <name> and return the full path. Doesn't just search $PATH in case the environment isn't set up correctly $config->load_configs(@extra); Load up configuration from known locations (warn if .csshrc file found) and load in option files as necessary. $config->write_user_config_file(); Write out default $HOME/.clusterssh/config file (before option config files are loaded). $config->dump() Write currently defined configuration to STDOUT AUTHOR
Duncan Ferguson, "<duncan_j_ferguson at yahoo.co.uk>" LICENSE AND COPYRIGHT
Copyright 1999-2010 Duncan Ferguson. This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. See http://dev.perl.org/licenses/ for more information. perl v5.14.2 2012-06-24 App::ClusterSSH::Config(3pm)

Check Out this Related Man Page

Config::Model::Approx(3pm)				User Contributed Perl Documentation				Config::Model::Approx(3pm)

NAME
Config::Model::Approx - Approx configuration file editor SYNOPSIS
use Config::Model ; my $model = Config::Model -> new ( ) ; my $inst = $model->instance (root_class_name => 'Approx'); my $root = $inst -> config_root ; $root->load("distribution:multimedia=http://www.debian-multimedia.org") ; $inst->write_back() ; DESCRIPTION
This module provides a configuration model for Approx. Then Config::Model provides a graphical editor program for /etc/approx/approx.conf. See config-edit-approx more help. This module and Config::Model can also be used from Perl programs to modify safely the content of /etc/approx/approx.conf. Once this module is installed, you can run: # config-edit-approx The Perl API is documented in Config::Model and mostly in Config::Model::Node. Functions These functions are declared in Approx configuration models and are called back. read (object => approx_root>, io_handle => ...) Read approx.conf and load the data in the "approx_root" configuration tree. write (object => approx_root>, io_handle => ...) Write data from the "approx_root" configuration tree into approx.conf. AUTHOR
Dominique Dumont, (ddumont at cpan dot org) LICENSE
Copyright (c) 2009 Dominique Dumont. This file is part of Config-Model-Approx. Config-Model-Approx is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. Config-Xorg is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser Public License for more details. You should have received a copy of the GNU Lesser Public License along with Config-Model; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA SEE ALSO
config-edit-approx, Config::Model, perl v5.12.3 2011-06-30 Config::Model::Approx(3pm)
Man Page