~ubuntu-branches/ubuntu/jaunty/freeradius/jaunty-updates

« back to all changes in this revision

Viewing changes to raddb/modules/passwd

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2008-09-22 08:42:02 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20080922084202-eyjprg3z55481ha5
Tags: 2.1.0+dfsg-0ubuntu1
* New upstream release.
* Fixes FTBFS issue with new libtool.
* Fixes listen on random port. (LP: #261809)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- text -*-
 
2
#
 
3
#  $Id$
 
4
 
 
5
# passwd module allows to do authorization via any passwd-like
 
6
# file and to extract any attributes from these modules
 
7
#
 
8
# parameters are:
 
9
#   filename - path to filename
 
10
#   format - format for filename record. This parameters
 
11
#            correlates record in the passwd file and RADIUS
 
12
#            attributes.
 
13
#
 
14
#            Field marked as '*' is key field. That is, the parameter
 
15
#            with this name from the request is used to search for
 
16
#            the record from passwd file
 
17
#            Attribute marked as '=' is added to reply_itmes instead
 
18
#            of default configure_itmes
 
19
#            Attribute marked as '~' is added to request_items
 
20
#
 
21
#            Field marked as ',' may contain a comma separated list
 
22
#            of attributes.
 
23
#   hashsize - hashtable size. If 0 or not specified records are not
 
24
#            stored in memory and file is red on every request.
 
25
#   allowmultiplekeys - if few records for every key are allowed
 
26
#   ignorenislike - ignore NIS-related records
 
27
#   delimiter - symbol to use as a field separator in passwd file,
 
28
#            for format ':' symbol is always used. '\0', '\n' are
 
29
#            not allowed 
 
30
#
 
31