host: removed unused self_has_aliases
This commit is contained in:
parent
ee9dc73a63
commit
25f527a32d
1 changed files with 0 additions and 3 deletions
|
@ -75,7 +75,6 @@ class Host(object):
|
|||
self._ip_matches = False
|
||||
self._hostname_matches = False
|
||||
self._aliases_matches = False
|
||||
self._has_aliases = False
|
||||
self._found_on_line = -1
|
||||
|
||||
def validate_has_hostname_on_present(self):
|
||||
|
@ -117,8 +116,6 @@ class Host(object):
|
|||
|
||||
# only look at aliases if we found hostname or ip
|
||||
if self._hostname_matches or self._ip_matches:
|
||||
if aliases:
|
||||
self._has_aliases = True
|
||||
if self.aliases and self.aliases == aliases:
|
||||
self._aliases_matches = True
|
||||
break
|
||||
|
|
Loading…
Reference in a new issue