diff options
Diffstat (limited to 'ipalib/plugins/service.py')
-rw-r--r-- | ipalib/plugins/service.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugins/service.py b/ipalib/plugins/service.py index d63e00bea..4752e198b 100644 --- a/ipalib/plugins/service.py +++ b/ipalib/plugins/service.py @@ -554,7 +554,7 @@ class service_add(LDAPCreate): # We know the host exists if we've gotten this far but we # really want to discourage creating services for hosts that # don't exist in DNS. - util.validate_host_dns(self.log, hostname) + util.verify_host_resolvable(hostname, self.log) if not 'managedby' in entry_attrs: entry_attrs['managedby'] = hostresult['dn'] |