The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

vuser - Virtual user management utility

SYNOPSIS

 vuser [--config=/path/to/vuser.conf] module action [options]
 vuser help [module]

OPTIONS

See 'vuser help module' for a list of actions and options.

DESCRIPTION

CONFIGURATION

By default, vuser looks for the file vuser.conf in these locations:

 "$FindBin::Bin/../etc",
 "$FindBin::Bin",
 "$FindBin::Bin/..",
 "$FindBin::Bin/vuser",
 "$FindBin::Bin/../vuser",
 "$FindBin::Bin/../etc/vuser",
 '/usr/local/etc',
 '/usr/local/etc/vuser',
 '/etc',
 '/etc/vuser',  

You may specify the path to the configuration file with the --config option.

 [vuser]
 # Enable debugging (Lots of output)
 debug = no
 
 # Space delimited list of extensions to load
 # extensions = Email::Courier Radius::SQL
 extensions = Email
 
 #log type = Syslog
 #log level = notice
 log level = debug
 
 show result set = yes
 # Display the result set in a different format.
 # Allowed formats: CSV
 #display format = CSV
 
 # Add paths to the include path
 # This may be ':' or newline delimited in a heredoc or both
 #include paths = /opt/lib:/home/user/lib
 #include paths = <<PATHS
 #/opt/lib:/home/vuser/lib
 #/opt/vuser/plugins
 #PATHS

BUGS

Report bugs at http://code.google.com/p/vuser/issues/list.

SEE ALSO

AUTHOR

Randy Smith <perlstalker@vuser.org>

LICENSE

 This file is part of vuser.
 
 vuser is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.
 
 vuser 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 General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with vuser; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA