Hello community, here is the log from the commit of package nfs-utils for openSUSE:Factory checked in at 2015-08-25 07:17:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/nfs-utils (Old) and /work/SRC/openSUSE:Factory/.nfs-utils.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "nfs-utils" Changes: -------- --- /work/SRC/openSUSE:Factory/nfs-utils/nfs-utils.changes 2015-08-11 08:24:58.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.nfs-utils.new/nfs-utils.changes 2015-08-25 07:17:35.000000000 +0200 @@ -1,0 +2,11 @@ +Thu Aug 13 02:36:16 UTC 2015 - [email protected] + +- sysconfig.nfs: add STATD_PORT, STATD_HOSTNAME, + LOCKD_TCPPORT, LOCKD_UDPPORT +- nfs-utils-env.sh: handle STATD_PORT, STATD_HOSTNAME, + LOCKD_TCPPORT, LOCKD_UDPPORT + Also handle NFSV4LEASETIME, which was missing. + + (bsc#941645) + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ nfs-utils_env.sh ++++++ --- /var/tmp/diff_new_pack.cHYSpo/_old 2015-08-25 07:17:36.000000000 +0200 +++ /var/tmp/diff_new_pack.cHYSpo/_new 2015-08-25 07:17:36.000000000 +0200 @@ -44,6 +44,24 @@ threads=3 fi +time_params= +if [ -n "$NFSV4LEASETIME" ]; then + time_params="--grace-time=$NFSV4LEASETIME --lease-time=$NFSV4LEASETIME" +fi + +if [ -n "$STATD_PORT" ]; then + STATD_OPTIONS="$STATD_OPTIONS -p $STATD_PORT" +fi +if [ -n "$STATD_HOSTNAME" ]; then + STATD_OPTIONS="$STATD_OPTIONS -n $STATD_HOSTNAME" +fi +if [ -n "$LOCKD_TCPPORT" ]; then + STATD_OPTIONS="$STATD_OPTIONS --nlm-port $LOCKD_TCPPORT" +fi +if [ -n "$LOCKD_UDPPORT" ]; then + STATD_OPTIONS="$STATD_OPTIONS --nlm-udp-port $LOCKD_UDPPORT" +fi + case $NFS_GSSD_AVOID_DNS in [Nn]*) ignore_dns=-D ;; [Yy]*) ignore_dns= ;; @@ -54,7 +72,7 @@ { echo "RPCIDMAPDARGS=$pipefs" echo "RPCMOUNTDARGS=$mountdport $MOUNTD_OPTIONS $version_parms" -echo "RPCNFSDARGS=$NFSD_OPTIONS $version_params $threads" +echo "RPCNFSDARGS=$NFSD_OPTIONS $version_params $time_params $threads" echo "GSSDARGS=$ignore_dns $GSSD_OPTIONS $pipefs" echo "SMNOTIFYARGS=$SM_NOTIFY_OPTIONS" echo "STATDARGS=$STATD_OPTIONS" ++++++ sysconfig.nfs ++++++ --- /var/tmp/diff_new_pack.cHYSpo/_old 2015-08-25 07:17:36.000000000 +0200 +++ /var/tmp/diff_new_pack.cHYSpo/_new 2015-08-25 07:17:36.000000000 +0200 @@ -90,6 +90,59 @@ NFS_START_SERVICES="yes" ## Path: Network/File systems/NFS server +## Description: Port rpc.statd should listen on +## Type: integer +## Default: "" +## ServiceRestart: nfsserver +# +# Statd will normally choose a random port to listen on and +# SuSE-Firewall is able to detect which port and allow for it. +# If you have another firewall, you may want to set a fixed +# port number which can then be opened in that firewall. +STATD_PORT="" + +## Path: Network/File systems/NFS server +## Description: Hostname used by rpc.statd +## Type: string +## Default: "" +## ServiceRestart: nfsserver +# +# statd will normally use the system hostname in status +# monitoring conversations with other hosts. If a different +# host name should be used, as can be useful with fail-over +# configurations, that name should be given here. +# +STATD_HOSTNAME="" + +## Path: Network/File systems/NFS server +## Description: TCP Port that lockd should listen on +## Type: integer +## Default: "" +## ServiceRestart: nfsserver +# +# Lockd will normally choose a random port to listen on and +# SuSE-Firewall is able to detect which port and allow for it. +# If you have another firewall, you may want to set a fixed +# port number which can then be opened in that firewall. +# lockd opens a UDP and a TCP port. This setting only affect +# the TCP port. +LOCKD_TCPPORT="" + +## Path: Network/File systems/NFS server +## Description: UDP Port that lockd should listen on +## Type: integer +## Default: "" +## ServiceRestart: nfsserver +# +# Lockd will normally choose a random port to listen on and +# SuSE-Firewall is able to detect which port and allow for it. +# If you have another firewall, you may want to set a fixed +# port number which can then be opened in that firewall. +# lockd opens a UDP and a TCP port. This setting only affect +# the UDP port. +LOCKD_UDPPORT="" + +## Path: Network/File systems/NFS server ## Description: Command line parameters for rpc.statd ## Type: string ## Default: "" @@ -161,8 +214,11 @@ ## Type: string ## Default: "" # -# This setting allows extra options to be specified for rpc.mountd, -# such as --manage-gids. +# Normally mountd does not require any options. In some circumstances, +# -n, -t, -g or other options might be useful. See "man 8 rpc.mountd" for +# details. Those options can be set here. +# -p or -N should be set using MOUNTD_PORT or NFS4_SUPPORT rather than +# this option. MOUNTD_OPTIONS="" ## Path: Network/File systems/NFS server
