From 466289f75522c7e6662ccfd17cbe2f000667f77e Mon Sep 17 00:00:00 2001 From: Avra Sengupta Date: Thu, 30 Apr 2015 14:14:14 +0530 Subject: snapshot/scheduler: Use os.path.realpath() for path validation In order to accomodate systems, where /var/run is a symlink to /run, we are using os.path.realpath() for path validations. Change-Id: I4eae536867ec6c88f92c762b92f5c1966b622bde BUG: 1216931 Signed-off-by: Avra Sengupta Reviewed-on: http://review.gluster.org/10464 Tested-by: Gluster Build System Reviewed-by: Rajesh Joseph Reviewed-by: Krishnan Parthasarathi Tested-by: Krishnan Parthasarathi --- extras/snap_scheduler/snap_scheduler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'extras') diff --git a/extras/snap_scheduler/snap_scheduler.py b/extras/snap_scheduler/snap_scheduler.py index 8aa65b6c9ae..68ac08937cb 100755 --- a/extras/snap_scheduler/snap_scheduler.py +++ b/extras/snap_scheduler/snap_scheduler.py @@ -68,7 +68,7 @@ def scheduler_status(): global scheduler_enabled try: f = os.path.realpath(GCRON_TASKS) - if f != GCRON_ENABLED or not os.path.exists(GCRON_ENABLED): + if f != os.path.realpath(GCRON_ENABLED) or not os.path.exists(GCRON_ENABLED): log.info("Snapshot scheduler is currently disabled.") scheduler_enabled = False else: -- cgit