2015-09-26 17:39:48

by Steve Dickson

[permalink] [raw]
Subject: ANNOUNCE: nfs-utils-1.3.3 released.

Hello,

nfs-utils-1.3.3 has just been released, just in time for Bakeathon.

New functional has added to the nfsidmap command but
this release consists of mostly bug fixes.

Thanks to everyone who contributed!

The tarballs can be found in
http://kernel.org/pub/linux/utils/nfs-utils/1.3.3/
or
http://sourceforge.net/projects/nfs/files/nfs-utils/1.3.3

The change log is in
http://kernel.org/pub/linux/utils/nfs-utils/1.3.2/1.3.3-ChangeLog
or
http://sourceforge.net/projects/nfs/files/nfs-utils/1.3.3/

The git tree is at:
git://linux-nfs.org/nfs-utils

Please send comments/bugs to [email protected]

steved.


2015-10-22 06:32:49

by NeilBrown

[permalink] [raw]
Subject: [PATCH nfs-utils] systemd/Makefile: only install rpc-svcgssd.service if it is required.


If we build without rpc-svcgssd (the default), don't install matching
.service file.

Signed-off-by: NeilBrown <[email protected]>

diff --git a/systemd/Makefile.am b/systemd/Makefile.am
index 0331926dcc03..03f96e93dccf 100644
--- a/systemd/Makefile.am
+++ b/systemd/Makefile.am
@@ -28,9 +28,13 @@ endif
if CONFIG_GSS
unit_files += \
auth-rpcgss-module.service \
- rpc-gssd.service \
+ rpc-gssd.service
+
+if CONFIG_SVCGSS
+unit_files += \
rpc-svcgssd.service
endif
+endif

EXTRA_DIST = $(unit_files)


Attachments:
signature.asc (818.00 B)

2015-11-04 21:50:24

by Steve Dickson

[permalink] [raw]
Subject: Re: [PATCH nfs-utils] systemd/Makefile: only install rpc-svcgssd.service if it is required.



On 10/22/2015 02:32 AM, Neil Brown wrote:
>
> If we build without rpc-svcgssd (the default), don't install matching
> .service file.
>
> Signed-off-by: NeilBrown <[email protected]>
Committed...

steved.

>
> diff --git a/systemd/Makefile.am b/systemd/Makefile.am
> index 0331926dcc03..03f96e93dccf 100644
> --- a/systemd/Makefile.am
> +++ b/systemd/Makefile.am
> @@ -28,9 +28,13 @@ endif
> if CONFIG_GSS
> unit_files += \
> auth-rpcgss-module.service \
> - rpc-gssd.service \
> + rpc-gssd.service
> +
> +if CONFIG_SVCGSS
> +unit_files += \
> rpc-svcgssd.service
> endif
> +endif
>
> EXTRA_DIST = $(unit_files)
>
>