From 627af78498402db1eb66f58107fcae8eae10f6e3 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 8 Sep 2012 16:34:05 +0200 Subject: [PATCH] [entropy.const] move Entropy Resources Lock path to /var/lib/entropy This commit moves the Entropy Resources Lock from: > /var/lib/entropy/client/database//.using_resources to a simpler: > /var/lib/entropy/.using_resources The main reason for the move is to make such path more consistent across architectures. --- lib/entropy/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/entropy/const.py b/lib/entropy/const.py index 21c6bcc93..7be925f03 100644 --- a/lib/entropy/const.py +++ b/lib/entropy/const.py @@ -1101,7 +1101,7 @@ def const_configure_lock_paths(): @return: None """ etpConst['locks'] = { - 'using_resources': os.path.join(etpConst['etpdatabaseclientdir'], + 'using_resources': os.path.join(etpConst['entropyworkdir'], '.using_resources'), }