From d3ea4ac5edbb0b19e79556447299ca4f21fa5a25 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 31 Jul 2003 12:40:54 +0000 Subject: Moved everything to trunk git-svn-id: file:///home/lennart/svn/public/pam_dotfile/trunk@13 5391d09e-f7c1-0310-8aa1-84a1c93f5a38 --- man/Makefile.am | 33 +++++++++++++++ man/pam-dotfile-gen.1.xml.in | 89 +++++++++++++++++++++++++++++++++++++++++ man/pam-dotfile-helper.8.xml.in | 61 ++++++++++++++++++++++++++++ 3 files changed, 183 insertions(+) create mode 100644 man/Makefile.am create mode 100644 man/pam-dotfile-gen.1.xml.in create mode 100644 man/pam-dotfile-helper.8.xml.in (limited to 'man') diff --git a/man/Makefile.am b/man/Makefile.am new file mode 100644 index 0000000..78a8129 --- /dev/null +++ b/man/Makefile.am @@ -0,0 +1,33 @@ +# $Id$ +# +# This file is part of pam_dotfile. +# +# pam_dotfile is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# pam_dotfile is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with pam_dotfile; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. + +man_MANS = pam-dotfile-gen.1 pam-dotfile-helper.8 + +EXTRA_DIST = $(man_MANS) pam-dotfile-helper.8.xml.in pam-dotfile-gen.1.xml.in + +if USE_XMLTOMAN + +CLEANFILES = $(man_MANS) + +pam-dotfile-gen.1: pam-dotfile-gen.1.xml.in Makefile + sed -e 's,@sysconfdir\@,$(sysconfdir),g' -e 's,@sbindir\@,$(sbindir),g' -e 's,@PACKAGE_BUGREPORT\@,$(PACKAGE_BUGREPORT),g' $< | xmltoman - > $@ + +pam-dotfile-helper.8: pam-dotfile-helper.8.xml.in Makefile + sed -e 's,@sysconfdir\@,$(sysconfdir),g' -e 's,@sbindir\@,$(sbindir),g' -e 's,@PACKAGE_BUGREPORT\@,$(PACKAGE_BUGREPORT),g' $< | xmltoman - > $@ + +endif diff --git a/man/pam-dotfile-gen.1.xml.in b/man/pam-dotfile-gen.1.xml.in new file mode 100644 index 0000000..ff2a986 --- /dev/null +++ b/man/pam-dotfile-gen.1.xml.in @@ -0,0 +1,89 @@ + + + + + + + + pam-dotfile-gen >> ~/.pam-service + pam-dotfile-gen -a service + + + + +

pam-dotfile-gen is a utility to create a password for a + particular service, if your system administrator has set up + authenication for that service with libpam-dotfile.

+ +

To create or change your password, just enter pam-dotfile-gen + -a <service> and you will be prompted for the + password. The password will be written to ~/.pam-<service> + in a hashed format. To add another password to the same service + repeat the command.

+ +

If called without any argument the tool will act as + filter. Unencrypted passwords are read from STDIN, are crypted + and written to STDOUT. The passwords are separated by + newlines. Empty lines and lines beginning with # are ignored and + written in an untouched way to STDOUT.

+ +

The file format of the ~/.pam is rather simple. Every + non-empty line which does not begin with # is compared with the + hashed password to be checked. This allows you to specify free + form comments for each password with a simple text editor.

+
+ + + + + + + + + + +
+

pam-dotfile was written by Lennart Poettering + <@PACKAGE_BUGREPORT@>. pam-dotfile is available + at

+
+ +
+

This man page was written using by Oliver Kurth.

+
+ +
diff --git a/man/pam-dotfile-helper.8.xml.in b/man/pam-dotfile-helper.8.xml.in new file mode 100644 index 0000000..c47f0ea --- /dev/null +++ b/man/pam-dotfile-helper.8.xml.in @@ -0,0 +1,61 @@ + + + + + + + + + <not invoked manually> + + + +

+ A helper binary for the pam_dotfile module, pam-dotfile-helper, is provided to + check the user's password. This binary is very simple and + will only check the password of the user invoking it. It is called + transparently on behalf of the user by the authenticating component of + the pam_dotfile module. In this way it is possible for applications + to work without being setuid root. +

+
+ +
+

+ This program is not intended to be called directly by users and will + log to syslog if it is called improperly (i.e., by someone trying to + exploit it). +

+
+ +
+

pam-dotfile was written by Lennart Poettering + <@PACKAGE_BUGREPORT@>. pam-dotfile is available + at +

+
+ +
+

This man page was written using by Oliver Kurth.

+
+ +
-- cgit