This commit is contained in:
parent
a66aae8587
commit
60765cebfb
@ -2,7 +2,7 @@ Index: configure.ac
|
|||||||
===================================================================
|
===================================================================
|
||||||
--- configure.ac.orig
|
--- configure.ac.orig
|
||||||
+++ configure.ac
|
+++ configure.ac
|
||||||
@@ -80,14 +80,14 @@ AC_SUBST(KRB5_BINDIR)
|
@@ -95,14 +95,14 @@ AC_SUBST(KRB5_BINDIR)
|
||||||
AC_CHECK_LIB(resolv,main)
|
AC_CHECK_LIB(resolv,main)
|
||||||
KRB5_CFLAGS=`$KRB5_CONFIG --cflags krb5`
|
KRB5_CFLAGS=`$KRB5_CONFIG --cflags krb5`
|
||||||
KRB5_LIBS=`$KRB5_CONFIG --libs krb5`
|
KRB5_LIBS=`$KRB5_CONFIG --libs krb5`
|
||||||
|
@ -1,18 +0,0 @@
|
|||||||
Index: src/minikafs.c
|
|
||||||
===================================================================
|
|
||||||
--- src/minikafs.c.orig
|
|
||||||
+++ src/minikafs.c
|
|
||||||
@@ -179,7 +179,13 @@ minikafs_ioctlcall(long function, long a
|
|
||||||
static int
|
|
||||||
minikafs_syscall(long function, long arg1, long arg2, long arg3, long arg4)
|
|
||||||
{
|
|
||||||
+#ifdef __arm__
|
|
||||||
+ /* no afs_syscall */
|
|
||||||
+ errno = ENOSYS;
|
|
||||||
+ return -1;
|
|
||||||
+#else
|
|
||||||
return syscall(__NR_afs_syscall, function, arg1, arg2, arg3, arg4);
|
|
||||||
+#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Call into AFS, somehow. */
|
|
@ -2,7 +2,7 @@ Index: src/auth.c
|
|||||||
===================================================================
|
===================================================================
|
||||||
--- src/auth.c.orig
|
--- src/auth.c.orig
|
||||||
+++ src/auth.c
|
+++ src/auth.c
|
||||||
@@ -422,9 +422,13 @@ pam_sm_setcred(pam_handle_t *pamh, int f
|
@@ -425,9 +425,13 @@ pam_sm_setcred(pam_handle_t *pamh, int f
|
||||||
return pam_sm_open_session(pamh, flags, argc, argv);
|
return pam_sm_open_session(pamh, flags, argc, argv);
|
||||||
}
|
}
|
||||||
if (flags & (PAM_REINITIALIZE_CRED | PAM_REFRESH_CRED)) {
|
if (flags & (PAM_REINITIALIZE_CRED | PAM_REFRESH_CRED)) {
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3bc58cf76e1ab98de4ee964edf9611d161c547d1af5c5a29b144ee5a4890141c
|
|
||||||
size 322949
|
|
3
pam_krb5-2.2.17-1.tar.bz2
Normal file
3
pam_krb5-2.2.17-1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:d5ade59c5d545a194583e9d0fc5f44f017b64d6f02146193d7df7b8ef3f81815
|
||||||
|
size 326785
|
@ -1,3 +1,22 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Aug 7 11:03:59 CEST 2007 - mc@suse.de
|
||||||
|
|
||||||
|
- version 2.2.17:
|
||||||
|
* corrected a typo in the pam_krb5(8) man page
|
||||||
|
* clarified that the "tokens" flag should only be needed for
|
||||||
|
applications which are not using PAM correctly
|
||||||
|
* don't bother using a helper for creating v4 ticket files when we're
|
||||||
|
just getting tokens
|
||||||
|
* clean up the debug message which we emit when we do v5->v4
|
||||||
|
principal name conversion
|
||||||
|
* compilation fixes
|
||||||
|
* let default "external" and "use_shmem" settings be specified at
|
||||||
|
compile-time
|
||||||
|
* correctly return a "unknown user" error when attempting to change
|
||||||
|
a password for a user who has no corresponding principal (#235020)
|
||||||
|
* don't bother using a helper for creating ccache files, which we're
|
||||||
|
just going to delete, when we need to get tokens
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 16 10:34:08 CEST 2007 - mc@suse.de
|
Mon Jul 16 10:34:08 CEST 2007 - mc@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package pam_krb5 (Version 2.2.14)
|
# spec file for package pam_krb5 (Version 2.2.17)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -17,13 +17,12 @@ License: GPL v2 or later
|
|||||||
Group: Productivity/Networking/Security
|
Group: Productivity/Networking/Security
|
||||||
Provides: pam_krb
|
Provides: pam_krb
|
||||||
Autoreqprov: on
|
Autoreqprov: on
|
||||||
Version: 2.2.14
|
Version: 2.2.17
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: PAM Module for Kerberos Authentication
|
Summary: PAM Module for Kerberos Authentication
|
||||||
URL: http://sourceforge.net/projects/pam-krb5/
|
URL: http://sourceforge.net/projects/pam-krb5/
|
||||||
Source: pam_krb5-%{version}-%{PAM_RELEASE}.tar.bz2
|
Source: pam_krb5-%{version}-%{PAM_RELEASE}.tar.bz2
|
||||||
Patch1: pam_krb5-2.2.0-0.5-configure_ac.dif
|
Patch1: pam_krb5-2.2.0-0.5-configure_ac.dif
|
||||||
Patch2: pam_krb5-2.2.0-2-noafsonarm.patch
|
|
||||||
Patch3: pam_krb5-2.2.11-1-refresh-drop-restore-priv.dif
|
Patch3: pam_krb5-2.2.11-1-refresh-drop-restore-priv.dif
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
@ -41,7 +40,6 @@ Authors:
|
|||||||
%prep
|
%prep
|
||||||
%setup -q -n pam_krb5-%{version}-%{PAM_RELEASE}
|
%setup -q -n pam_krb5-%{version}-%{PAM_RELEASE}
|
||||||
%patch1
|
%patch1
|
||||||
%patch2
|
|
||||||
%patch3
|
%patch3
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -75,6 +73,22 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%attr(755,root,root) /usr/bin/afs5log
|
%attr(755,root,root) /usr/bin/afs5log
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Aug 07 2007 - mc@suse.de
|
||||||
|
- version 2.2.17:
|
||||||
|
* corrected a typo in the pam_krb5(8) man page
|
||||||
|
* clarified that the "tokens" flag should only be needed for
|
||||||
|
applications which are not using PAM correctly
|
||||||
|
* don't bother using a helper for creating v4 ticket files when we're
|
||||||
|
just getting tokens
|
||||||
|
* clean up the debug message which we emit when we do v5->v4
|
||||||
|
principal name conversion
|
||||||
|
* compilation fixes
|
||||||
|
* let default "external" and "use_shmem" settings be specified at
|
||||||
|
compile-time
|
||||||
|
* correctly return a "unknown user" error when attempting to change
|
||||||
|
a password for a user who has no corresponding principal (#235020)
|
||||||
|
* don't bother using a helper for creating ccache files, which we're
|
||||||
|
just going to delete, when we need to get tokens
|
||||||
* Mon Jul 16 2007 - mc@suse.de
|
* Mon Jul 16 2007 - mc@suse.de
|
||||||
- version 2.2.14
|
- version 2.2.14
|
||||||
* treat a "client revoked" error as an "unknown principal" error
|
* treat a "client revoked" error as an "unknown principal" error
|
||||||
|
Loading…
Reference in New Issue
Block a user