From: Alfredo Deza Date: Fri, 6 Dec 2013 15:44:20 +0000 (-0500) Subject: create a base run path in constants X-Git-Tag: v1.3.4~3^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d33d275eeccc5401af59f7802c0e8e2cf1095ac7;p=ceph-deploy.git create a base run path in constants Signed-off-by: Alfredo Deza --- 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')