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

NAME

PlugAuth::Plugin::FlatUserList - PlugAuth plugin that provides a user list without authentication.

VERSION

version 0.39

SYNOPSIS

In your PlugAuth.conf file:

 ---
 plugins:
   - PlugAuth::Plugin::FlatUserList:
       user_list_file: /path/to/user_list.txt
   - PlugAuth::Plugin::LDAP: {}
 ldap :
   server : ldap://1.2.3.4:389
   dn : uid=%s, ou=people, dc=users, dc=example, dc=com
   authoritative : 1

Then in /path/to/user_list.txt

 alice
 bob
 george
 ...

DESCRIPTION

This plugin provides a user list, stored as a flat file. It just provides a user list, no authentication. All authentication requests are passed onto the next authentication plugin in your configuration. The intent of this plugin is to provide a user list for authentication plugins which do not otherwise provide a user list (The above example shows how to configure this plugin with the LDAP plugin as an example).

The format of the user list is a simple text file, one line per user. Do not use spaces, comments, tabs or anything like that as they are not supported. This plugin does NOT support modifying the user list through the PlugAuth RESTful API. You will need to hand edit the user list to add and remove users.

PlugAuth needs an accurate user list to compute the list of groups and to handle authorization, as there is a special group for each user that contains exactly just that user and has the same name as that user.

METHODS

$plugin->check_credentials( $user, $pass )

Check if the username and password is a valid credentials. This plugin just passes the request on to the next authentication plugin without checking the username or password.

$plugin->all_users

Returns the list of users in the user list file.

SEE ALSO

PlugAuth

AUTHOR

Graham Ollis <gollis@sesda3.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by NASA GSFC.

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