Print this page
2947 initial /etc/pam.d cut


   4  * The contents of this file are subject to the terms of the
   5  * Common Development and Distribution License (the "License").
   6  * You may not use this file except in compliance with the License.
   7  *
   8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9  * or http://www.opensolaris.org/os/licensing.
  10  * See the License for the specific language governing permissions
  11  * and limitations under the License.
  12  *
  13  * When distributing Covered Code, include this CDDL HEADER in each
  14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15  * If applicable, add the following below this CDDL HEADER, with the
  16  * fields enclosed by brackets "[]" replaced with your own identifying
  17  * information: Portions Copyright [yyyy] [name of copyright owner]
  18  *
  19  * CDDL HEADER END
  20  */
  21 /*
  22  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
  23  * Use is subject to license terms.


  24  */
  25 
  26 #ifndef _PAM_IMPL_H
  27 #define _PAM_IMPL_H
  28 
  29 #ifdef __cplusplus
  30 extern "C" {
  31 #endif
  32 
  33 #include <limits.h>
  34 #include <shadow.h>
  35 #include <sys/types.h>
  36 
  37 #define PAMTXD          "SUNW_OST_SYSOSPAM"
  38 
  39 #define PAM_CONFIG      "/etc/pam.conf"

  40 #define PAM_ISA         "/$ISA/"
  41 #define PAM_LIB_DIR     "/usr/lib/security/"
  42 #ifdef  _LP64
  43 #define PAM_ISA_DIR     "/64/"
  44 #else   /* !_LP64 */
  45 #define PAM_ISA_DIR     "/"
  46 #endif  /* _LP64 */
  47 
  48 /* Service Module Types */
  49 
  50 /*
  51  * If new service types are added, they should be named in
  52  * pam_framework.c::pam_snames[] as well.
  53  */
  54 
  55 #define PAM_ACCOUNT_NAME        "account"
  56 #define PAM_AUTH_NAME           "auth"
  57 #define PAM_PASSWORD_NAME       "password"
  58 #define PAM_SESSION_NAME        "session"
  59 




   4  * The contents of this file are subject to the terms of the
   5  * Common Development and Distribution License (the "License").
   6  * You may not use this file except in compliance with the License.
   7  *
   8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9  * or http://www.opensolaris.org/os/licensing.
  10  * See the License for the specific language governing permissions
  11  * and limitations under the License.
  12  *
  13  * When distributing Covered Code, include this CDDL HEADER in each
  14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15  * If applicable, add the following below this CDDL HEADER, with the
  16  * fields enclosed by brackets "[]" replaced with your own identifying
  17  * information: Portions Copyright [yyyy] [name of copyright owner]
  18  *
  19  * CDDL HEADER END
  20  */
  21 /*
  22  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
  23  * Use is subject to license terms.
  24  *
  25  * Copyright 2012 Joshua M. Clulow <josh@sysmgr.org>
  26  */
  27 
  28 #ifndef _PAM_IMPL_H
  29 #define _PAM_IMPL_H
  30 
  31 #ifdef __cplusplus
  32 extern "C" {
  33 #endif
  34 
  35 #include <limits.h>
  36 #include <shadow.h>
  37 #include <sys/types.h>
  38 
  39 #define PAMTXD          "SUNW_OST_SYSOSPAM"
  40 
  41 #define PAM_CONFIG      "/etc/pam.conf"
  42 #define PAM_CONFIG_DIR  "/etc/pam.d/"
  43 #define PAM_ISA         "/$ISA/"
  44 #define PAM_LIB_DIR     "/usr/lib/security/"
  45 #ifdef  _LP64
  46 #define PAM_ISA_DIR     "/64/"
  47 #else   /* !_LP64 */
  48 #define PAM_ISA_DIR     "/"
  49 #endif  /* _LP64 */
  50 
  51 /* Service Module Types */
  52 
  53 /*
  54  * If new service types are added, they should be named in
  55  * pam_framework.c::pam_snames[] as well.
  56  */
  57 
  58 #define PAM_ACCOUNT_NAME        "account"
  59 #define PAM_AUTH_NAME           "auth"
  60 #define PAM_PASSWORD_NAME       "password"
  61 #define PAM_SESSION_NAME        "session"
  62