From f07a81ef391e112d9de460eb6e027e9991ede849 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Wed, 17 Jun 2020 23:12:16 -0700 Subject: [PATCH] apache: Add ssl-cert package as dependency The make-ssl-cert command is used during initial setup so it is a hard dependency. Earlier it was being included as a Recommends: via apache2 package. Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/modules/apache/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plinth/modules/apache/__init__.py b/plinth/modules/apache/__init__.py index 7028e955f..c598a6930 100644 --- a/plinth/modules/apache/__init__.py +++ b/plinth/modules/apache/__init__.py @@ -19,7 +19,7 @@ is_essential = True managed_services = ['apache2'] -managed_packages = ['apache2', 'php-fpm'] +managed_packages = ['apache2', 'php-fpm', 'ssl-cert'] app = None