| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # /etc/pam.d/xscreensaver | 5 # /etc/pam.d/xscreensaver |
| 6 # | 6 # |
| 7 # Configure the pam modules that slim uses to authenticate the user. | 7 # Configure the pam modules that xscreensaver uses to authenticate the user. |
| 8 | 8 |
| 9 # We borrow from the system default in /etc/pam.d/common-* | 9 # We borrow from the system default in /etc/pam.d/common-* |
| 10 | 10 |
| 11 # from common-auth | 11 # from common-auth |
| 12 auth» [success=1 default=ignore]» pam_google.so offline_first | 12 auth» [success=1 default=ignore]» chromeos_pam_offline.so |
| 13 auth requisite pam_deny.so | 13 auth requisite pam_deny.so |
| 14 auth required pam_permit.so | 14 auth required pam_permit.so |
| 15 | 15 |
| 16 # from common-account | 16 # from common-account |
| 17 account [success=1 new_authtok_reqd=done default=ignore] pam_permit.so | 17 account [success=1 new_authtok_reqd=done default=ignore] pam_permit.so |
| 18 account requisite pam_deny.so | 18 account requisite pam_deny.so |
| 19 account required pam_permit.so | 19 account required pam_permit.so |
| 20 | 20 |
| 21 | 21 |
| 22 @include common-password | 22 @include common-password |
| 23 @include common-session | 23 @include common-session |
| OLD | NEW |