-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hotfix(sessionbroker): add PAM configurationn
- Loading branch information
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# ulalaca-sessionbroker: auth account password session | ||
# based on Apple's sshd PAM configuration | ||
auth optional pam_krb5.so use_kcminit | ||
auth optional pam_ntlm.so try_first_pass | ||
auth optional pam_mount.so try_first_pass | ||
auth required pam_opendirectory.so try_first_pass | ||
account required pam_nologin.so | ||
account required pam_sacl.so sacl_service=ssh | ||
account required pam_opendirectory.so | ||
password required pam_opendirectory.so | ||
session required pam_launchd.so | ||
session optional pam_mount.so |