From a126414a42c2425f1a32bd353c4becc9fa56133d Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Tue, 2 Jul 2019 15:32:40 -0700 Subject: [PATCH] dynamicdns: Send domain added signal properly during init Due a missing dependency on 'names' app, 'dynamicdns' app could be initialized before 'names' app. This will lead to domain_added signal by dynamicdns being ignored. Dynamic DNS domain name will not be make it into the list of global domains. Signed-off-by: Sunil Mohan Adapa Reviewed-by: Joseph Nuthalapati --- plinth/modules/dynamicdns/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plinth/modules/dynamicdns/__init__.py b/plinth/modules/dynamicdns/__init__.py index 085a1ecfc..56b4dcc87 100644 --- a/plinth/modules/dynamicdns/__init__.py +++ b/plinth/modules/dynamicdns/__init__.py @@ -34,6 +34,8 @@ version = 1 is_essential = True +depends = ['names'] + managed_packages = ['ez-ipupdate'] name = _('Dynamic DNS Client')