From 61ff4190d5f597ea61c8db1d45be5acd3ad50e07 Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Sun, 27 Nov 2016 20:07:22 -0500 Subject: [PATCH] letsencrypt: Mark module as non-essential This avoids making the certbot package a dependency for plinth. --- plinth/modules/letsencrypt/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plinth/modules/letsencrypt/__init__.py b/plinth/modules/letsencrypt/__init__.py index b7a85d543..97f8aba9f 100644 --- a/plinth/modules/letsencrypt/__init__.py +++ b/plinth/modules/letsencrypt/__init__.py @@ -29,7 +29,7 @@ from plinth.utils import format_lazy version = 1 -is_essential = True +is_essential = False depends = ['apps', 'names']