From c3d23caddf0f75ee01f2dc8730b59f4b62e97d49 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Tue, 8 Sep 2015 13:50:52 -0400 Subject: [PATCH] ceph-common: explicitly trigger /run/ceph creation This doesn't happen magically on debian. Signed-off-by: Sage Weil --- debian/ceph-common.postinst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/debian/ceph-common.postinst b/debian/ceph-common.postinst index 36410a3b630b6..719dc7908b95f 100644 --- a/debian/ceph-common.postinst +++ b/debian/ceph-common.postinst @@ -85,6 +85,9 @@ case "$1" in echo "..done" fi + # create /run/ceph. fail softly if systemd isn't present or + # something. + [ -x /bin/systemd-tmpfiles ] && systemd-tmpfiles --create || true ;; abort-upgrade|abort-remove|abort-deconfigure) : -- 2.39.5