From 87b82c0366427456a178c2eaed6d0b7e27d640ac Mon Sep 17 00:00:00 2001 From: Luke Macken Date: Wed, 20 Feb 2008 11:38:05 -0500 Subject: Add some documentation to our pamprovider module --- funcweb/funcweb/identity/pamprovider.py | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 +""" +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 -- cgit