rpms/glusterfs/EL-4 .cvsignore, 1.2, 1.3 glusterfs.spec, 1.2, 1.3 glusterfsd.init, 1.1, 1.2 glusterfsd.sysconfig, 1.1, 1.2 sources, 1.2, 1.3 glusterfs-1.3.7-ocreat.patch, 1.1, NONE glusterfs-1.3.8-mount.patch, 1.1, NONE

Matthias Saou thias at fedoraproject.org
Mon Feb 16 12:25:17 UTC 2009


Author: thias

Update of /cvs/extras/rpms/glusterfs/EL-4
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12294/EL-4

Modified Files:
	.cvsignore glusterfs.spec glusterfsd.init glusterfsd.sysconfig 
	sources 
Removed Files:
	glusterfs-1.3.7-ocreat.patch glusterfs-1.3.8-mount.patch 
Log Message:
Update to latest stable 1.3.12 and backport to all current branches.



Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/glusterfs/EL-4/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore	3 Feb 2008 14:31:54 -0000	1.2
+++ .cvsignore	16 Feb 2009 12:24:46 -0000	1.3
@@ -1 +1 @@
-glusterfs-1.3.8.tar.gz
+glusterfs-1.3.12.tar.gz


Index: glusterfs.spec
===================================================================
RCS file: /cvs/extras/rpms/glusterfs/EL-4/glusterfs.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- glusterfs.spec	3 Feb 2008 20:18:01 -0000	1.2
+++ glusterfs.spec	16 Feb 2009 12:24:46 -0000	1.3
@@ -13,8 +13,8 @@
 
 Summary: Cluster File System
 Name: glusterfs
-Version: 1.3.8
-Release: 0.8%{?dist}
+Version: 1.3.12
+Release: 1%{?dist}
 License: GPLv3+
 Group: System Environment/Base
 URL: http://www.gluster.org/docs/index.php/GlusterFS
@@ -22,8 +22,6 @@
 Source1: glusterfsd.init
 Source2: glusterfsd.sysconfig
 Source3: umount.glusterfs
-Patch0: glusterfs-1.3.7-ocreat.patch
-Patch1: glusterfs-1.3.8-mount.patch
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
 Requires(post): /sbin/chkconfig
 Requires(preun): /sbin/service, /sbin/chkconfig
@@ -115,8 +113,6 @@
 
 %prep
 %setup -q
-%patch0 -p1 -b .ocreat
-%patch1 -p1 -b .mount
 
 
 %build
@@ -193,6 +189,7 @@
 /sbin/mount.glusterfs
 /sbin/umount.glusterfs
 %dir /var/log/glusterfs/
+%{_mandir}/man8/glusterfs.8*
 %endif
 
 
@@ -202,8 +199,10 @@
 %config(noreplace) %{_sysconfdir}/glusterfs/*.vol
 %config(noreplace) %{_sysconfdir}/sysconfig/glusterfsd
 %{_sysconfdir}/init.d/glusterfsd
+%{_sbindir}/glusterfs
 %{_sbindir}/glusterfsd
 %dir /var/log/glusterfs/
+%{_mandir}/man8/glusterfs.8*
 
 
 %files devel
@@ -214,6 +213,28 @@
 
 
 %changelog
+* Mon Feb 16 2009 Matthias Saou <http://freshrpms.net/> 1.3.12-1
+- Update to 1.3.12.
+- Remove no longer needed ocreat patch.
+
+* Thu Jul 17 2008 Matthias Saou <http://freshrpms.net/> 1.3.10-1
+- Update to 1.3.10.
+- Remove mount patch, it's been included upstream now.
+
+* Fri May 16 2008 Matthias Saou <http://freshrpms.net/> 1.3.9-1
+- Update to 1.3.9.
+
+* Fri May  9 2008 Matthias Saou <http://freshrpms.net/> 1.3.8-1
+- Update to 1.3.8 final.
+
+* Tue Apr 23 2008 Matthias Saou <http://freshrpms.net/> 1.3.8-0.10
+- Include short patch to include fixes from latest TLA 751.
+
+* Mon Apr 22 2008 Matthias Saou <http://freshrpms.net/> 1.3.8-0.9
+- Update to 1.3.8pre6.
+- Include glusterfs binary in both the client and server packages, now that
+  glusterfsd is a symlink to it instead of a separate binary.
+
 * Sun Feb  3 2008 Matthias Saou <http://freshrpms.net/> 1.3.8-0.8
 - Add python version check and disable bindings for version < 2.4.
 


Index: glusterfsd.init
===================================================================
RCS file: /cvs/extras/rpms/glusterfs/EL-4/glusterfsd.init,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- glusterfsd.init	3 Feb 2008 14:31:54 -0000	1.1
+++ glusterfsd.init	16 Feb 2009 12:24:46 -0000	1.2
@@ -20,10 +20,12 @@
 GLUSTERFSD_CONFIG="/etc/glusterfs/glusterfs-server.vol"
 GLUSTERFSD_LOGFILE="/var/log/glusterfs/glusterfsd.log"
 GLUSTERFSD_LOGLEVEL="WARNING"
+GLUSTERFSD_NOFILE="65536"
 [ -f /etc/sysconfig/glusterfsd ] && source /etc/sysconfig/glusterfsd
 
 start() {
 	echo -n $"Starting $prog: "
+	ulimit -n ${GLUSTERFSD_NOFILE}
 	daemon $glusterfsd -f ${GLUSTERFSD_CONFIG} -l ${GLUSTERFSD_LOGFILE} -L ${GLUSTERFSD_LOGLEVEL}
 	RETVAL=$?
 	echo


Index: glusterfsd.sysconfig
===================================================================
RCS file: /cvs/extras/rpms/glusterfs/EL-4/glusterfsd.sysconfig,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- glusterfsd.sysconfig	3 Feb 2008 14:31:54 -0000	1.1
+++ glusterfsd.sysconfig	16 Feb 2009 12:24:46 -0000	1.2
@@ -4,4 +4,5 @@
 #GLUSTERFSD_CONFIG="/etc/glusterfs/glusterfs-server.vol"
 #GLUSTERFSD_LOGFILE="/var/log/glusterfs/glusterfsd.log"
 #GLUSTERFSD_LOGLEVEL="ERROR"
+#GLUSTERFSD_NOFILE="65536"
 


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/glusterfs/EL-4/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources	3 Feb 2008 14:31:54 -0000	1.2
+++ sources	16 Feb 2009 12:24:46 -0000	1.3
@@ -1 +1 @@
-eb7ebc04cab10966877863f31799382d  glusterfs-1.3.8.tar.gz
+db11e3d9d227f5b10b2a93c0d8929123  glusterfs-1.3.12.tar.gz


--- glusterfs-1.3.7-ocreat.patch DELETED ---


--- glusterfs-1.3.8-mount.patch DELETED ---




More information about the fedora-extras-commits mailing list