From d33d275eeccc5401af59f7802c0e8e2cf1095ac7 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Fri, 6 Dec 2013 10:44:20 -0500 Subject: [PATCH] create a base run path in constants Signed-off-by: Alfredo Deza --- ceph_deploy/util/constants.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ceph_deploy/util/constants.py b/ceph_deploy/util/constants.py index 7fbadc1..36c5f4f 100644 --- a/ceph_deploy/util/constants.py +++ b/ceph_deploy/util/constants.py @@ -3,6 +3,9 @@ from os.path import join # Base Path for ceph base_path = '/var/lib/ceph' +# Base run Path +base_run_path = '/var/run/ceph' + tmp_path = join(base_path, 'tmp') mon_path = join(base_path, 'mon') -- 2.47.3