mirror of
git://git.gnu.org.ua/pam-modules.git
synced 2025-04-26 00:19:52 +03:00
Update
git-svn-id: file:///svnroot/pam-modules/trunk@55 56984be4-0537-0410-a56c-fcb268c96130
This commit is contained in:
parent
1c487cbd52
commit
35c5bc9e42
4 changed files with 30 additions and 13 deletions
2
AUTHORS
2
AUTHORS
|
@ -1 +1 @@
|
||||||
Sergey Poznyakoff <gray@farlep.net>
|
Sergey Poznyakoff <gray@gnu.org.ua>
|
||||||
|
|
4
NEWS
4
NEWS
|
@ -2,9 +2,9 @@ pam-modules -- history of user-visible changes. 2007-08-11
|
||||||
Copyright (C) 2001,2004,2005,2007 Sergey Poznyakoff
|
Copyright (C) 2001,2004,2005,2007 Sergey Poznyakoff
|
||||||
See the end of file for copying conditions.
|
See the end of file for copying conditions.
|
||||||
|
|
||||||
Please send radius bug reports to <gray@gnu.org.ua>
|
Please send radius bug reports to <bug-pam-modules@gnu.org.ua>
|
||||||
|
|
||||||
Version 1.1 (CVS)
|
Version 1.1, 2007-08-11
|
||||||
|
|
||||||
* pam_fshadow allows to use virtual domains to specify alternate password
|
* pam_fshadow allows to use virtual domains to specify alternate password
|
||||||
databases. New options: regex, basic, extended, ignore-case, icase
|
databases. New options: regex, basic, extended, ignore-case, icase
|
||||||
|
|
31
README
31
README
|
@ -1,5 +1,5 @@
|
||||||
PAM-modules README
|
PAM-modules README
|
||||||
Copyright 2005 Sergey Poznyakoff
|
Copyright (C) 2001, 2004, 2005, 2007 Sergey Poznyakoff
|
||||||
See the end of file for copying conditions.
|
See the end of file for copying conditions.
|
||||||
|
|
||||||
* Introduction
|
* Introduction
|
||||||
|
@ -10,7 +10,7 @@ using them. It is *not* intended as a replacement for the
|
||||||
documentation, it is provided as a brief reference only. The complete
|
documentation, it is provided as a brief reference only. The complete
|
||||||
documentation for PAM-modules is available in doc/ subdirectory. To
|
documentation for PAM-modules is available in doc/ subdirectory. To
|
||||||
read it without installing the package run `info -f
|
read it without installing the package run `info -f
|
||||||
doc/pam-modules'. After installation the documentation can be accessed
|
doc/pam-modules'. After installation, the documentation can be accessed
|
||||||
running `info pam-modules'.
|
running `info pam-modules'.
|
||||||
|
|
||||||
The online copy of the documentation in various formats is available
|
The online copy of the documentation in various formats is available
|
||||||
|
@ -23,30 +23,43 @@ To install the package, do
|
||||||
** ./configure [options]
|
** ./configure [options]
|
||||||
|
|
||||||
For the list of available options consult file INSTALL.
|
For the list of available options consult file INSTALL.
|
||||||
The only applications-specific option is:
|
The applications-specific options are:
|
||||||
|
|
||||||
*** --with-pamdir=DIR
|
--with-pamdir=DIR
|
||||||
Set installation directory for PAM loadable files.
|
Set installation directory for PAM loadable files.
|
||||||
Default is PREFIX/lib/security
|
Default is PREFIX/lib/security
|
||||||
|
|
||||||
|
--without-mysql
|
||||||
|
Do not build pam_mysql
|
||||||
|
|
||||||
|
--without-pgsql
|
||||||
|
--without-postgres
|
||||||
|
Do not build pam_pgsql
|
||||||
|
|
||||||
|
--without-sql
|
||||||
|
Do not build SQL-dependent modules (i.e. pam_mysql and
|
||||||
|
pam_pgsql)
|
||||||
|
|
||||||
|
--with-pamdir=DIR
|
||||||
|
Install PAM modiles in DIR (default is PREFIX/lib/security)
|
||||||
|
|
||||||
** Run make
|
** Run make
|
||||||
|
|
||||||
** Run make install
|
** Run make install
|
||||||
|
|
||||||
* Usage
|
* Usage
|
||||||
|
|
||||||
See accompanying documentation for the detailed discussion.
|
See the accompanying documentation for the detailed description.
|
||||||
|
|
||||||
* Bug reporting
|
* Bug reporting
|
||||||
|
|
||||||
Send bug reports to <gray@gnu.org.ua>. Take a look at chapter
|
Send bug reports to <bug-pam-modules@gnu.org.ua>. Read the chapter
|
||||||
"Reporting Bugs" in the accompanying documentation, it can contain
|
"Reporting Bugs" in the accompanying documentation for more information.
|
||||||
some useful hints.
|
|
||||||
|
|
||||||
|
|
||||||
* Copyright information:
|
* Copyright information:
|
||||||
|
|
||||||
Copyright (C) 2001,2004,2005 Sergey Poznyakoff
|
Copyright (C) 2001, 2004, 2005, 2007 Sergey Poznyakoff
|
||||||
|
|
||||||
Permission is granted to anyone to make or distribute verbatim copies
|
Permission is granted to anyone to make or distribute verbatim copies
|
||||||
of this document as received, in any medium, provided that the
|
of this document as received, in any medium, provided that the
|
||||||
|
|
|
@ -63,9 +63,13 @@ AC_ARG_WITH(mysql,
|
||||||
AC_HELP_STRING([--without-mysql],
|
AC_HELP_STRING([--without-mysql],
|
||||||
[Configure to work without MySQL]),
|
[Configure to work without MySQL]),
|
||||||
[MYSQL=$withval])
|
[MYSQL=$withval])
|
||||||
|
AC_ARG_WITH(pgsql,
|
||||||
|
AC_HELP_STRING([--without-pgsql],
|
||||||
|
[Configure to work without Postgres]),
|
||||||
|
[PGSQL=$withval])
|
||||||
AC_ARG_WITH(postgres,
|
AC_ARG_WITH(postgres,
|
||||||
AC_HELP_STRING([--without-postgres],
|
AC_HELP_STRING([--without-postgres],
|
||||||
[Configure to work without Postgres]),
|
[Same as --without-pgsql]),
|
||||||
[PGSQL=$withval])
|
[PGSQL=$withval])
|
||||||
AC_ARG_WITH(sql,
|
AC_ARG_WITH(sql,
|
||||||
AC_HELP_STRING([--without-sql],
|
AC_HELP_STRING([--without-sql],
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue