Author: jjneely
Update of /cvs/free/rpms/openafs/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv5571
Modified Files:
.cvsignore afs.conf openafs.spec sources
Log Message:
* Mon Jul 25 2011 Jack Neely <jjneely(a)ncsu.edu> 0.1.4.14.1-1
- Updated to OpenAFS version 1.4.14.1
- Populate cache directory even though we use memcache by default
rpmFusion Bug 1783
- Add the -fakestat option to the default options for afsd
rpmFusion Bug 1837
- rename /usr/sbin/backup to /usr/sbin/afsbackup
rpmFusion Bug 1727
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/openafs/F-14/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 10 Jan 2011 23:52:18 -0000 1.2
+++ .cvsignore 25 Jul 2011 15:44:06 -0000 1.3
@@ -1,2 +1,2 @@
-openafs-1.4.14-doc.tar.bz2
-openafs-1.4.14-src.tar.bz2
+openafs-1.4.14.1-doc.tar.bz2
+openafs-1.4.14.1-src.tar.bz2
Index: afs.conf
===================================================================
RCS file: /cvs/free/rpms/openafs/F-14/afs.conf,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- afs.conf 4 Nov 2010 21:28:02 -0000 1.2
+++ afs.conf 25 Jul 2011 15:44:06 -0000 1.3
@@ -16,7 +16,7 @@
LARGE="-stat 2800 -dcache 2400 -daemons 5 -volumes 128"
MEDIUM="-stat 2000 -dcache 800 -daemons 3 -volumes 70"
SMALL="-stat 300 -dcache 100 -daemons 2 -volumes 50"
-OPTIONS="$MEDIUM -nosettime -memcache -afsdb -dynroot"
+OPTIONS="$MEDIUM -nosettime -memcache -afsdb -dynroot -fakestat"
# Set some sane sysnames -- figure out what we are
_ARCH=`uname -i | sed 's/x86_64/amd64/'`
Index: openafs.spec
===================================================================
RCS file: /cvs/free/rpms/openafs/F-14/openafs.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- openafs.spec 7 Mar 2011 19:14:04 -0000 1.7
+++ openafs.spec 25 Jul 2011 15:44:06 -0000 1.8
@@ -12,13 +12,13 @@
Summary: Enterprise Network File System
Name: openafs
-Version: 1.4.14
-Release: 3%{?dist}
+Version: 1.4.14.1
+Release: 1%{?dist}
License: IBM
Group: System Environment/Daemons
URL:
http://www.openafs.org
-Source0:
http://www.openafs.org/dl/openafs/1.4.12/%{name}-%{version}-src.tar.bz2
-Source1:
http://www.openafs.org/dl/openafs/1.4.12/openafs-%{version}-doc.tar.bz2
+Source0:
http://www.openafs.org/dl/openafs/%{version}/%{name}-%{version}-src.tar.bz2
+Source1:
http://www.openafs.org/dl/openafs/%{version}/%{name}-%{version}-doc.tar.bz2
Source11: CellServDB
Source12: cacheinfo
Source13: openafs.init
@@ -147,6 +147,10 @@
# Include kpasswd as kpasswd.kas so I can change my admin tokens
mv ${RPM_BUILD_ROOT}/usr/bin/kpasswd ${RPM_BUILD_ROOT}/usr/bin/kpasswd.kas
+# Rename /usr/sbin/backup to /usr/sbin/afsbackup to not conflict with Coda
+# (Future AFS upstream change)
+mv ${RPM_BUILD_ROOT}/usr/sbin/backup ${RPM_BUILD_ROOT}/usr/sbin/afsbackup
+
# Put the PAM modules in a sane place
mkdir -p ${RPM_BUILD_ROOT}/%{_lib}/security
mv ${RPM_BUILD_ROOT}%{_libdir}/pam_afs.krb.so.1 \
@@ -173,6 +177,9 @@
mv $RPM_BUILD_ROOT%{_mandir}/man1/kpasswd.1 \
$RPM_BUILD_ROOT%{_mandir}/man1/kapasswd.1
+# Create the cache directory
+install -d -m 700 $RPM_BUILD_ROOT%{_localstatedir}/cache/openafs
+
# don't restart in post because kernel modules could well have changed
%post
/sbin/ldconfig
@@ -229,7 +236,7 @@
%{_bindir}/unlog
%{_bindir}/up
%{_bindir}/translate_et
-%{_sbindir}/backup
+%{_sbindir}/afsbackup
%{_sbindir}/butc
%{_sbindir}/fstrace
%{_sbindir}/restorevol
@@ -247,6 +254,7 @@
%files client
%defattr(-, root, root)
%dir %{_sysconfdir}/openafs
+%dir %{_localstatedir}/cache/openafs
%config(noreplace) %{_sysconfdir}/openafs/CellServDB
%config(noreplace) %{_sysconfdir}/openafs/ThisCell
%config(noreplace) %{_sysconfdir}/openafs/cacheinfo
@@ -298,6 +306,15 @@
%changelog
+* Mon Jul 25 2011 Jack Neely <jjneely(a)ncsu.edu> 0.1.4.14.1-1
+- Updated to OpenAFS version 1.4.14.1
+- Populate cache directory even though we use memcache by default
+ rpmFusion Bug 1783
+- Add the -fakestat option to the default options for afsd
+ rpmFusion Bug 1837
+- rename /usr/sbin/backup to /usr/sbin/afsbackup
+ rpmFusion Bug 1727
+
* Mon Mar 07 2011 Jack Neely <jjneely(a)ncsu.edu> 0:1.4.14-3
- rpmFusion Bug #1649
- Include the static libraries in openafs-devel as they are required
Index: sources
===================================================================
RCS file: /cvs/free/rpms/openafs/F-14/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 10 Jan 2011 23:52:18 -0000 1.4
+++ sources 25 Jul 2011 15:44:06 -0000 1.5
@@ -1,2 +1,2 @@
-4d1502afa76de966dbc16f80a51e8c6a openafs-1.4.14-doc.tar.bz2
-e26d2e894999a18a47a9cf8bbfbaadb2 openafs-1.4.14-src.tar.bz2
+80cf90a07a3cd77c16f1f4178ea3daff openafs-1.4.14.1-doc.tar.bz2
+2e8b521d6ef4ae57b5699f9ecb3085de openafs-1.4.14.1-src.tar.bz2