Comment 16 for bug 1616123

Revision history for this message
Andreas Hasenack (ahasenack) wrote :

Bionic verification

First, reproducing the bug:

ubuntu@bionic-nfs:~$ apt-cache policy nfs-kernel-server
nfs-kernel-server:
  Installed: 1:1.3.4-2.1ubuntu5.1
  Candidate: 1:1.3.4-2.1ubuntu5.1
  Version table:
 *** 1:1.3.4-2.1ubuntu5.1 500
        500 http://br.archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages

Confirming "-v" option is set:
ubuntu@bionic-nfs:~$ cat /run/sysconfig/nfs-utils
PIPEFS_MOUNTPOINT=/run/rpc_pipefs
RPCNFSDARGS=" 8"
RPCMOUNTDARGS="--manage-gids"
STATDARGS=""
RPCSVCGSSDARGS="-v"

But not given to the process:
ubuntu@bionic-nfs:~$ ps axw|grep svcgssd|grep -v grep
 3681 ? Ss 0:00 /usr/sbin/rpc.svcgssd

With the updated package:
ubuntu@bionic-nfs:~$ apt-cache policy nfs-kernel-server
nfs-kernel-server:
  Installed: 1:1.3.4-2.1ubuntu5.2
  Candidate: 1:1.3.4-2.1ubuntu5.2
  Version table:
 *** 1:1.3.4-2.1ubuntu5.2 500
        500 http://br.archive.ubuntu.com/ubuntu bionic-proposed/main amd64 Packages

It starts working right after the upgrade:
...
Setting up nfs-common (1:1.3.4-2.1ubuntu5.2) ...
nfs-utils.service is a disabled or a static unit not running, not starting it.
Setting up nfs-kernel-server (1:1.3.4-2.1ubuntu5.2) ...
Processing triggers for systemd (237-3ubuntu10.21) ...
Processing triggers for man-db (2.8.3-2ubuntu0.1) ...

ubuntu@bionic-nfs:~$ ps axw|grep svcgssd|grep -v grep
 5149 ? Ss 0:00 /usr/sbin/rpc.svcgssd -v
ubuntu@bionic-nfs:~$

Bionic verification succeeded.