pam_faildelay.8 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. '\" t
  2. .\" Title: pam_faildelay
  3. .\" Author: [see the "AUTHOR" section]
  4. .\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
  5. .\" Date: 09/03/2021
  6. .\" Manual: Linux-PAM Manual
  7. .\" Source: Linux-PAM Manual
  8. .\" Language: English
  9. .\"
  10. .TH "PAM_FAILDELAY" "8" "09/03/2021" "Linux-PAM Manual" "Linux\-PAM Manual"
  11. .\" -----------------------------------------------------------------
  12. .\" * Define some portability stuff
  13. .\" -----------------------------------------------------------------
  14. .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  15. .\" http://bugs.debian.org/507673
  16. .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
  17. .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  18. .ie \n(.g .ds Aq \(aq
  19. .el .ds Aq '
  20. .\" -----------------------------------------------------------------
  21. .\" * set default formatting
  22. .\" -----------------------------------------------------------------
  23. .\" disable hyphenation
  24. .nh
  25. .\" disable justification (adjust text to left margin only)
  26. .ad l
  27. .\" -----------------------------------------------------------------
  28. .\" * MAIN CONTENT STARTS HERE *
  29. .\" -----------------------------------------------------------------
  30. .SH "NAME"
  31. pam_faildelay \- Change the delay on failure per\-application
  32. .SH "SYNOPSIS"
  33. .HP \w'\fBpam_faildelay\&.so\fR\ 'u
  34. \fBpam_faildelay\&.so\fR [debug] [delay=\fImicroseconds\fR]
  35. .SH "DESCRIPTION"
  36. .PP
  37. pam_faildelay is a PAM module that can be used to set the delay on failure per\-application\&.
  38. .PP
  39. If no
  40. \fBdelay\fR
  41. is given, pam_faildelay will use the value of FAIL_DELAY from
  42. /etc/login\&.defs\&.
  43. .SH "OPTIONS"
  44. .PP
  45. \fBdebug\fR
  46. .RS 4
  47. Turns on debugging messages sent to syslog\&.
  48. .RE
  49. .PP
  50. \fBdelay=\fR\fB\fIN\fR\fR
  51. .RS 4
  52. Set the delay on failure to N microseconds\&.
  53. .RE
  54. .SH "MODULE TYPES PROVIDED"
  55. .PP
  56. Only the
  57. \fBauth\fR
  58. module type is provided\&.
  59. .SH "RETURN VALUES"
  60. .PP
  61. PAM_IGNORE
  62. .RS 4
  63. Delay was successful adjusted\&.
  64. .RE
  65. .PP
  66. PAM_SYSTEM_ERR
  67. .RS 4
  68. The specified delay was not valid\&.
  69. .RE
  70. .SH "EXAMPLES"
  71. .PP
  72. The following example will set the delay on failure to 10 seconds:
  73. .sp
  74. .if n \{\
  75. .RS 4
  76. .\}
  77. .nf
  78. auth optional pam_faildelay\&.so delay=10000000
  79. .fi
  80. .if n \{\
  81. .RE
  82. .\}
  83. .sp
  84. .SH "SEE ALSO"
  85. .PP
  86. \fBpam_fail_delay\fR(3),
  87. \fBpam.conf\fR(5),
  88. \fBpam.d\fR(5),
  89. \fBpam\fR(8)
  90. .SH "AUTHOR"
  91. .PP
  92. pam_faildelay was written by Darren Tucker <dtucker@zip\&.com\&.au>\&.