diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2007-12-18 12:55:38 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2007-12-18 12:55:38 +0000 |
commit | 4463902ff272d0ee5be8757768a6491e681c332e (patch) | |
tree | 0a88900dae5d09e3bbed6a92ae73755e78669138 /README | |
parent | 75e765ba9d3a389743bc34c8d1e74812f46a726b (diff) | |
download | pam-4463902ff272d0ee5be8757768a6491e681c332e.tar.gz pam-4463902ff272d0ee5be8757768a6491e681c332e.tar.bz2 pam-4463902ff272d0ee5be8757768a6491e681c332e.zip |
Relevant BUGIDs: 1822779, 1822764
Purpose of commit: docufix
Commit summary:
---------------
2007-12-18 Thorsten Kukuk <kukuk@thkukuk.de>
* README: Document how to run make check with static modules
(SF#1822779).
2007-12-18 Peter Breitenlohner <peb@mppmu.mpg.de>
* README: Document that "make check" requires a file
/etc/pam.d/other (SF#1822764).
Diffstat (limited to 'README')
-rw-r--r-- | README | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -15,7 +15,16 @@ To make sure everything was compiled correct, run: make check -If a test failes, you should not continue to install this build. +If a test fails, you should not continue to install this build. +These tests require a suitable file /etc/pam.d/other; if necessary, +create such a file containing, e.g., these five lines (not indented) + + #%PAM-1.0 + auth required pam_deny.so + account required pam_deny.so + password required pam_deny.so + session required pam_deny.so + Note, if you are worried - don't even think about doing the next line (most Linux distributions already support PAM out of the box, so if @@ -37,6 +46,7 @@ WARNING: Running "make xtests" can overwrite configuration data or make the system insecure/unfunctional for a short time! Backup all important data before! + If you do not wish to make the modules dynamically loadable, but build a static libpam including all PAM modules, you have to call: @@ -46,6 +56,10 @@ In this case you cannot use pam_unix in the PAM config files instead you have to use pam_unix_acct, pam_unix_auth, pam_unix_passwd and pam_unix_session. +To run the build checks with static modules, you need to run the +following command: make -C test check && make check + + To regenerate manual pages from the XML source files you need the docbook-xsl stylesheets in version 1.69.1 or newer, older versions had a bug which generates a broken layout. |