From cd89f39f62f27d69d86bc16224b44204c0efbb85 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Thu, 16 Mar 2017 15:02:45 -0700 Subject: [PATCH] add LOCK_FILE constant --- certbot/constants.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/certbot/constants.py b/certbot/constants.py index b286ca26a..383eadcbd 100644 --- a/certbot/constants.py +++ b/certbot/constants.py @@ -109,3 +109,6 @@ FORCE_INTERACTIVE_FLAG = "--force-interactive" EFF_SUBSCRIBE_URI = "https://supporters.eff.org/subscribe/certbot" """EFF URI used to submit the e-mail address of users who opt-in.""" + +LOCK_FILE = "/tmp/.certbot.lock" +"""Global lockfile to stop multiple Certbot instances from running at once."""