aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorMark Sapiro <msapiro@value.net>2012-11-24 11:05:25 -0800
committerMark Sapiro <msapiro@value.net>2012-11-24 11:05:25 -0800
commit5e9ccd5d1dde2160cfdffac64eed0e78d7de5a48 (patch)
tree4b51a54363c272be163b9fd0d31a3d754a6a6d31 /bin
parentd9efa7366817f87af212995a28cccaf457cdff40 (diff)
downloadmailman2-5e9ccd5d1dde2160cfdffac64eed0e78d7de5a48.tar.gz
mailman2-5e9ccd5d1dde2160cfdffac64eed0e78d7de5a48.tar.xz
mailman2-5e9ccd5d1dde2160cfdffac64eed0e78d7de5a48.zip
The name of the mailmanctl master lock file is now congigurable via the
mm_cfg.py setting MASTER_LOCK_FILE. (LP: 1082308)
Diffstat (limited to 'bin')
-rw-r--r--bin/mailmanctl2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/mailmanctl b/bin/mailmanctl
index 613f909f..caddb8b8 100644
--- a/bin/mailmanctl
+++ b/bin/mailmanctl
@@ -117,7 +117,7 @@ COMMASPACE = ', '
DOT = '.'
# Locking contantsa
-LOCKFILE = os.path.join(mm_cfg.LOCK_DIR, 'master-qrunner')
+LOCKFILE = os.path.join(mm_cfg.LOCK_DIR, mm_cfg.MASTER_LOCK_FILE)
# Since we wake up once per day and refresh the lock, the LOCK_LIFETIME
# needn't be (much) longer than SNOOZE. We pad it 6 hours just to be safe.
LOCK_LIFETIME = mm_cfg.days(1) + mm_cfg.hours(6)