README 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. pam_echo — PAM module for printing text messages
  2. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  3. DESCRIPTION
  4. The pam_echo PAM module is for printing text messages to inform user about
  5. special things. Sequences starting with the % character are interpreted in the
  6. following way:
  7. %H
  8. The name of the remote host (PAM_RHOST).
  9. %h
  10. The name of the local host.
  11. %s
  12. The service name (PAM_SERVICE).
  13. %t
  14. The name of the controlling terminal (PAM_TTY).
  15. %U
  16. The remote user name (PAM_RUSER).
  17. %u
  18. The local user name (PAM_USER).
  19. All other sequences beginning with % expands to the characters following the %
  20. character.
  21. EXAMPLES
  22. For an example of the use of this module, we show how it may be used to print
  23. information about good passwords:
  24. password optional pam_echo.so file=/usr/share/doc/good-password.txt
  25. password required pam_unix.so
  26. AUTHOR
  27. Thorsten Kukuk <kukuk@thkukuk.de>