nfs-utils: update to 1.3.2

This commit is contained in:
Juergen Daubert 2015-02-02 10:49:47 +01:00
parent 7ba9ea7efa
commit fdb2fa0311
4 changed files with 35 additions and 3 deletions

View File

@ -17,6 +17,7 @@ drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man5/
-rw-r--r-- root/root usr/man/man5/exports.5.gz
-rw-r--r-- root/root usr/man/man5/nfs.5.gz
-rw-r--r-- root/root usr/man/man5/nfsmount.conf.5.gz
drwxr-xr-x root/root usr/man/man7/
-rw-r--r-- root/root usr/man/man7/nfsd.7.gz
drwxr-xr-x root/root usr/man/man8/

View File

@ -1,5 +1,6 @@
c5ccf58f5f9f57aba75c8b72219eb6e6 exports
167ea3a16eb6f33b3642e920147bb265 idmapd.conf
1477840e1c19e0ac95c538db8b401d90 nfs
97f157f954edb6d4d4385a0c5986f36f nfs-utils-1.3.1.tar.bz2
1e2f3c1ed468dee02d00c534c002ea10 nfs-utils-1.3.2.tar.bz2
071bb2c4e2104599f0bba55a8ce35f37 nfsserver
b4c745cd305c718157af2f24eef21525 statd_foreground_mode.patch

View File

@ -4,14 +4,17 @@
# Depends on: util-linux eudev libcap rpcbind libnfsidmap libevent keyutils sqlite3
name=nfs-utils
version=1.3.1
version=1.3.2
release=1
source=(http://downloads.sourceforge.net/project/nfs/$name/$version/$name-$version.tar.bz2 \
exports idmapd.conf nfs nfsserver)
exports idmapd.conf nfs nfsserver \
statd_foreground_mode.patch)
build () {
cd $name-$version
patch -p1 -i $SRC/statd_foreground_mode.patch
./configure --prefix=/usr \
--mandir=/usr/man \
--sysconfdir=/etc \

View File

@ -0,0 +1,27 @@
# https://bugzilla.redhat.com/show_bug.cgi?id=1188052
commit 17a3e5bffb7110d46de1bf42b64b90713ff5ea50
Author: Chris Mayo <aklhfex@gmail.com>
Date: Sun Feb 1 12:03:46 2015 -0500
statd: Fix test for foreground mode
daemon_init parameter has the opposite sense
to code removed in commit 7addf9d
Signed-off-by: Chris Mayo <aklhfex@gmail.com>
Signed-off-by: Steve Dickson <steved@redhat.com>
diff --git a/utils/statd/statd.c b/utils/statd/statd.c
index 60ce6d1..2b7a167 100644
--- a/utils/statd/statd.c
+++ b/utils/statd/statd.c
@@ -393,7 +393,7 @@ int main (int argc, char **argv)
simulator (--argc, ++argv); /* simulator() does exit() */
#endif
- daemon_init(!(run_mode & MODE_NODAEMON));
+ daemon_init((run_mode & MODE_NODAEMON));
if (run_mode & MODE_LOG_STDERR) {
xlog_syslog(0);