summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2008-02-21 15:29:38 -0500
committerMichael DeHaan <mdehaan@redhat.com>2008-02-21 15:29:38 -0500
commit2d9f74170b27609df7475e80a060b141005b9bc8 (patch)
tree9fa3a612cb33157866998189023927f257291c80
parentafbe0786ee0f6855c461c975cac4940f01fc5208 (diff)
parent87b82c0366427456a178c2eaed6d0b7e27d640ac (diff)
downloadthird_party-func-2d9f74170b27609df7475e80a060b141005b9bc8.tar.gz
third_party-func-2d9f74170b27609df7475e80a060b141005b9bc8.tar.xz
third_party-func-2d9f74170b27609df7475e80a060b141005b9bc8.zip
Merge branch 'master' of ssh://git.fedoraproject.org/git/hosted/func
-rw-r--r--funcweb/funcweb/identity/pamprovider.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/funcweb/funcweb/identity/pamprovider.py b/funcweb/funcweb/identity/pamprovider.py
index ebcea91..68aedfb 100644
--- a/funcweb/funcweb/identity/pamprovider.py
+++ b/funcweb/funcweb/identity/pamprovider.py
@@ -17,6 +17,16 @@
#
# Author(s): Luke Macken <lmacken@redhat.com>
+"""
+This module contains an Identity Provider used by TurboGears to authenticate
+users against PAM. It utilizes the pam.py module written by Chris AtLee.
+http://pypi.python.org/pypi/pam/0.1.2
+
+To utilize, simply define the following in your app.cfg:
+
+ identity.provider = 'pam'
+"""
+
import pam
import logging