Skip to content
Snippets Groups Projects
Commit 1a2603b4 authored by Stéphane Diemer's avatar Stéphane Diemer
Browse files

Do not check localhost DNS resolution.

parent 7f988ba9
No related branches found
No related tags found
No related merge requests found
......@@ -95,7 +95,7 @@ services_info = (
for conf_name, default_domain, package in services_info:
domain = conf.get(conf_name)
if domain and domain != default_domain:
if domain and domain not in ('localhost', default_domain):
# check that the service is installed on this system
status, output = subprocess.getstatusoutput('dpkg -s %s' % package)
if status == 0:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment