diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2006-09-01 11:37:13 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2006-09-01 11:37:13 +0000 |
commit | 633c7e0651817ab043dd4618c5f9c9ed980b1666 (patch) | |
tree | c245e90e99800fde5a0ab1ad4da3039bc9a15369 /modules/pam_env | |
parent | 89c393b73d9e4c7fa1adaea4ed17047215bdb942 (diff) | |
download | pam-633c7e0651817ab043dd4618c5f9c9ed980b1666.tar.gz pam-633c7e0651817ab043dd4618c5f9c9ed980b1666.tar.bz2 pam-633c7e0651817ab043dd4618c5f9c9ed980b1666.zip |
Relevant BUGIDs:
Purpose of commit: new feature
Commit summary:
---------------
2006-08-31 Thorsten Kukuk <kukuk@thkukuk.de>
* modules/pam_env/environment: New, dummy environment example
config file.
Diffstat (limited to 'modules/pam_env')
-rw-r--r-- | modules/pam_env/Makefile.am | 3 | ||||
-rw-r--r-- | modules/pam_env/environment | 5 | ||||
-rw-r--r-- | modules/pam_env/pam_env.conf | 3 |
3 files changed, 7 insertions, 4 deletions
diff --git a/modules/pam_env/Makefile.am b/modules/pam_env/Makefile.am index 287e2534..83236e9b 100644 --- a/modules/pam_env/Makefile.am +++ b/modules/pam_env/Makefile.am @@ -4,7 +4,7 @@ CLEANFILES = *~ -EXTRA_DIST = README pam_env.conf $(MANS) $(XMLS) tst-pam_env +EXTRA_DIST = README pam_env.conf $(MANS) $(XMLS) tst-pam_env environment man_MANS = pam_env.conf.5 pam_env.8 @@ -24,6 +24,7 @@ endif securelib_LTLIBRARIES = pam_env.la secureconf_DATA = pam_env.conf +sysconf_DATA = environment if ENABLE_REGENERATE_MAN noinst_DATA = README diff --git a/modules/pam_env/environment b/modules/pam_env/environment new file mode 100644 index 00000000..f46b8d94 --- /dev/null +++ b/modules/pam_env/environment @@ -0,0 +1,5 @@ +# +# This file is parsed by pam_env module +# +# Syntax: simple "KEY=VAL" pairs on seperate lines +# diff --git a/modules/pam_env/pam_env.conf b/modules/pam_env/pam_env.conf index 02116639..d0ba35c2 100644 --- a/modules/pam_env/pam_env.conf +++ b/modules/pam_env/pam_env.conf @@ -1,6 +1,3 @@ -# $Date$ -# $Author$ -# $Id$ # # This is the configuration file for pam_env, a PAM module to load in # a configurable list of environment variables for a |