From: Thomas Blume <thomas.blume@xxxxxxxx> Most of the distros have /var/run as symlink to /run. Because /var may be a separate partition, and could even be mounted via NFS, having to look directly to /run help to avoid issues rpcbind startup early in boot when /var might not be available. Reviewed-by: Petr Vorel <pvorel@xxxxxxx> Signed-off-by: Thomas Blume <thomas.blume@xxxxxxxx> Signed-off-by: Petr Vorel <pvorel@xxxxxxx> --- NOTE: I chose opensuse patch for the simplicity, instead of Debian patch, which unsets _PATH_RPCBINDSOCK (libtirpc). I'll send a separate patch for libtirpc. Kind regards, Petr src/rpcbind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpcbind.c b/src/rpcbind.c index ecebe97..9887b82 100644 --- a/src/rpcbind.c +++ b/src/rpcbind.c @@ -105,7 +105,7 @@ char *nss_modules = "files"; /* who to suid to if -s is given */ #define RUN_AS "daemon" -#define RPCBINDDLOCK "/var/run/rpcbind.lock" +#define RPCBINDDLOCK "/run/rpcbind.lock" int runasdaemon = 0; int insecure = 0; -- 2.45.2