From 01fabbe893128916d87e47bb5488e2c5314036b4 Mon Sep 17 00:00:00 2001 From: Peter Eckersley Date: Mon, 26 Oct 2015 12:07:40 -0700 Subject: [PATCH] Also make apache docs conditional? --- letsencrypt/cli.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index 9fa765a2e..61b62e320 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -69,6 +69,11 @@ if "nginx" in plugins: nginx_doc = "--nginx Use the Nginx plugin for authentication & installation" else: nginx_doc = "(nginx support is experimental, buggy, and not installed by default)" +if "apache" in plugins: + apache_doc = "--apache Use the Apache plugin for authentication & installation" +else: + apache_doc = "(the apache plugin is not installed)" + # This is the short help for letsencrypt --help, where we disable argparse