From e073f0169c0b0f486d36d84ae5b8aa4151af113a Mon Sep 17 00:00:00 2001 From: Veiko Aasa Date: Mon, 17 Feb 2020 10:36:31 +0200 Subject: [PATCH] config: Depends also on apache module Closes #1778 Signed-off-by: Veiko Aasa Reviewed-by: Sunil Mohan Adapa --- plinth/modules/config/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plinth/modules/config/__init__.py b/plinth/modules/config/__init__.py index d16ba4f3f..33029161b 100644 --- a/plinth/modules/config/__init__.py +++ b/plinth/modules/config/__init__.py @@ -39,7 +39,7 @@ _description = [ 'like hostname, domain name, webserver home page etc.') ] -depends = ['firewall', 'names'] +depends = ['apache', 'firewall', 'names'] APACHE_CONF_ENABLED_DIR = '/etc/apache2/conf-enabled' APACHE_HOMEPAGE_CONF_FILE_NAME = 'freedombox-apache-homepage.conf'