~yolanda.robla/ubuntu/saucy/freeradius/dep-8-tests

« back to all changes in this revision

Viewing changes to raddb/modules/always

  • Committer: Bazaar Package Importer
  • Author(s): Josip Rodin
  • Date: 2009-11-23 03:57:37 UTC
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: james.westby@ubuntu.com-20091123035737-snauioz5r9tf8sdr
Tags: upstream-2.1.7+dfsg
ImportĀ upstreamĀ versionĀ 2.1.7+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- text -*-
 
2
#
 
3
#  $Id$
 
4
 
 
5
#
 
6
# The "always" module is here for debugging purposes. Each
 
7
# instance simply returns the same result, always, without
 
8
# doing anything.
 
9
always fail {
 
10
        rcode = fail
 
11
}
 
12
always reject {
 
13
        rcode = reject
 
14
}
 
15
always noop {
 
16
        rcode = noop
 
17
}
 
18
always handled {
 
19
        rcode = handled
 
20
}
 
21
always updated {
 
22
        rcode = updated
 
23
}
 
24
always notfound {
 
25
        rcode = notfound
 
26
}
 
27
always ok {
 
28
        rcode = ok
 
29
        simulcount = 0
 
30
        mpp = no
 
31
}