Advertisement
Guest User

Untitled

a guest
May 11th, 2011
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. # lines inserted by Centrify Direct Control (CentrifyDC 4.4.2-310)
  2. auth sufficient pam_centrifydc.so
  3. auth requisite pam_centrifydc.so deny
  4. #
  5. # /etc/pam.d/common-auth - authentication settings common to all services
  6. #
  7. # This file is included from other service-specific PAM config files,
  8. # and should contain a list of the authentication modules that define
  9. # the central authentication scheme for use on the system
  10. # (e.g., /etc/shadow, LDAP, Kerberos, etc.). The default is to use the
  11. # traditional Unix authentication mechanisms.
  12. #
  13. # As of pam 1.0.1-6, this file is managed by pam-auth-update by default.
  14. # To take advantage of this, it is recommended that you configure any
  15. # local modules either before or after the default block, and use
  16. # pam-auth-update to manage selection of other modules. See
  17. # pam-auth-update(8) for details.
  18.  
  19. # here are the per-package modules (the "Primary" block)
  20. auth [success=1 default=ignore] pam_unix.so nullok_secure
  21. # here's the fallback if no module succeeds
  22. auth requisite pam_deny.so
  23. # prime the stack with a positive return value if there isn't one already;
  24. # this avoids us returning an error just because nothing sets a success code
  25. # since the modules above will each just jump around
  26. auth required pam_permit.so
  27. # and here are more per-package modules (the "Additional" block)
  28. auth optional pam_mount.so
  29. auth optional pam_ecryptfs.so unwrap
  30. # end of pam-auth-update config
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement