Use correct variable for determining the host name

435055
This commit is contained in:
Rob Crittenden
2008-02-26 22:34:06 -05:00
parent d6d12e9dc5
commit f02b5c1962

View File

@@ -42,7 +42,7 @@ class BindInstance(service.Service):
self.ip_address = ip_address
self.realm = realm_name
self.domain = domain_name
self.host = domain_name[:domain_name.find(".")]
self.host = fqdn[:fqdn.find(".")]
self.__setup_sub_dict()