nfs-utils: switch to /run to store pidfiles.
This commit is contained in:
parent
8eb9061a6e
commit
8535c57866
|
@ -0,0 +1,35 @@
|
||||||
|
Switch to use /run directory to store pid files.
|
||||||
|
|
||||||
|
--- utils/blkmapd/device-discovery.c.orig 2012-07-09 11:20:51.221140077 +0200
|
||||||
|
+++ utils/blkmapd/device-discovery.c 2012-07-09 11:21:03.050857448 +0200
|
||||||
|
@@ -51,7 +51,7 @@
|
||||||
|
#include "device-discovery.h"
|
||||||
|
|
||||||
|
#define BL_PIPE_FILE "/var/lib/nfs/rpc_pipefs/nfs/blocklayout"
|
||||||
|
-#define PID_FILE "/var/run/blkmapd.pid"
|
||||||
|
+#define PID_FILE "/run/blkmapd.pid"
|
||||||
|
|
||||||
|
struct bl_disk *visible_disk_list;
|
||||||
|
|
||||||
|
--- utils/statd/statd.c.orig 2012-07-09 11:21:43.651887544 +0200
|
||||||
|
+++ utils/statd/statd.c 2012-07-09 11:22:02.897427788 +0200
|
||||||
|
@@ -155,7 +155,7 @@ usage(void)
|
||||||
|
fprintf(stderr," -H Specify a high-availability callout program.\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
-static const char *pidfile = "/var/run/rpc.statd.pid";
|
||||||
|
+static const char *pidfile = "/run/rpc.statd.pid";
|
||||||
|
|
||||||
|
int pidfd = -1;
|
||||||
|
static void create_pidfile(void)
|
||||||
|
--- utils/statd/sm-notify.c.orig 2012-07-09 11:22:33.106706108 +0200
|
||||||
|
+++ utils/statd/sm-notify.c 2012-07-09 11:22:49.104323933 +0200
|
||||||
|
@@ -858,7 +858,7 @@ static int record_pid(void)
|
||||||
|
int fd;
|
||||||
|
|
||||||
|
(void)snprintf(pid, sizeof(pid), "%d\n", (int)getpid());
|
||||||
|
- fd = open("/var/run/sm-notify.pid", O_CREAT|O_EXCL|O_WRONLY, 0600);
|
||||||
|
+ fd = open("/run/sm-notify.pid", O_CREAT|O_EXCL|O_WRONLY, 0600);
|
||||||
|
if (fd < 0)
|
||||||
|
return 0;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'nfs-utils'
|
# Template file for 'nfs-utils'
|
||||||
pkgname=nfs-utils
|
pkgname=nfs-utils
|
||||||
version=1.2.6
|
version=1.2.6
|
||||||
revision=4
|
revision=5
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--with-statduser=nobody --enable-gss --enable-nfsv4
|
configure_args="--with-statduser=nobody --enable-gss --enable-nfsv4
|
||||||
--with-statedir=/var/lib/nfs --enable-libmount-mount
|
--with-statedir=/var/lib/nfs --enable-libmount-mount
|
||||||
|
|
Loading…
Reference in New Issue