-gforge-plugin-ldapextauth (0.1-1) UNRELEASED; urgency=low
+gforge-plugin-ldapextauth (0.1-1) experimental; urgency=low
* First release of the external LDAP authentication plugin.
- -- Roland Mas <lolando@debian.org> Sun, 14 Dec 2003 21:50:15 +0100
+ -- Roland Mas <lolando@debian.org> Sun, 18 Jan 2004 22:44:46 +0100
Priority: optional
Maintainer: Roland Mas <lolando@debian.org>
Build-Depends-Indep: debhelper (>> 4.0.0)
-Standards-Version: 3.5.8
+Standards-Version: 3.6.1
Package: gforge-plugin-ldapextauth
Architecture: all
Depends: gforge-common, gforge-db-postgresql | gforge-db, gforge-web-apache | gforge-web
Description: A Gforge plugin to authenticate from an external LDAP directory
+ This plugin allows Gforge to use an external LDAP directory to
+ authenticate the users. When they first try to log in, their
+ login-name and password are checked against the LDAP tree. If they
+ match, the user is transparently inserted into the Gforge database
+ and authentication proceeds normally from then on.
+++ /dev/null
-#! /bin/sh
-# postrm script for gforge-plugin-moinwiki
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <postrm> `remove'
-# * <postrm> `purge'
-# * <old-postrm> `upgrade' <new-version>
-# * <new-postrm> `failed-upgrade' <old-version>
-# * <new-postrm> `abort-install'
-# * <new-postrm> `abort-install' <old-version>
-# * <new-postrm> `abort-upgrade' <old-version>
-# * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
- purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
-
-
- ;;
-
- *)
- echo "postrm called with unknown argument \`$1'" >&2
- exit 1
-
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
+++ /dev/null
-#! /bin/sh
-# preinst script for gforge-plugin-moinwiki
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <new-preinst> `install'
-# * <new-preinst> `install' <old-version>
-# * <new-preinst> `upgrade' <old-version>
-# * <old-preinst> `abort-upgrade' <new-version>
-#
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
- install|upgrade)
- ;;
-
- abort-upgrade)
- ;;
-
- *)
- echo "preinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
-
-