summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorINSUN PYO <insun.pyo@samsung.com>2020-12-03 14:15:10 +0900
committerYoungHun Kim <yh8004.kim@samsung.com>2020-12-07 11:06:53 +0900
commitad0622d107be8c0b192ff1b1fa7a26bca9bd4bba (patch)
tree6ea28803ba309e3669e306a611b8034689c2eaa3
parentfb91d03c2b24a50e6af5d9dcb035ce07fc267c9d (diff)
downloadmurphy-ad0622d107be8c0b192ff1b1fa7a26bca9bd4bba.tar.gz
murphy-ad0622d107be8c0b192ff1b1fa7a26bca9bd4bba.tar.bz2
murphy-ad0622d107be8c0b192ff1b1fa7a26bca9bd4bba.zip
* Journal log Jan 16 13:38:50 localhost systemd-tmpfiles[207]: /usr/lib/tmpfiles.d/murphyd.conf:2: Line references path below legacy directory /var/run/, updating /var/run/murphy/processes → /run/murphy/processes; please update the tmpfiles.d/ drop-in file accordingly. Change-Id: I5066bcefc81cad5864a852fde8674e33718064f0
-rw-r--r--packaging/murphyd.conf2
-rw-r--r--src/common/process.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/packaging/murphyd.conf b/packaging/murphyd.conf
index 7f5bffa..a1649b8 100644
--- a/packaging/murphyd.conf
+++ b/packaging/murphyd.conf
@@ -1,2 +1,2 @@
d /tmp/murphy 0755 owner users - -
-d /var/run/murphy/processes 0755 owner users - -
+d /run/murphy/processes 0755 owner users - -
diff --git a/src/common/process.c b/src/common/process.c
index 71a10e1..09db548 100644
--- a/src/common/process.c
+++ b/src/common/process.c
@@ -44,7 +44,7 @@
#include <murphy/common.h>
-#define MURPHY_PROCESS_INOTIFY_DIR "/var/run/murphy/processes"
+#define MURPHY_PROCESS_INOTIFY_DIR "/run/murphy/processes"
struct mrp_pid_watch_s {
pid_t pid;