Since using platform.node, be sure to just return the hostname component.
This commit is contained in:
parent
f5e43d6a9a
commit
b72dedc36e
1 changed files with 1 additions and 1 deletions
2
setup
2
setup
|
@ -139,7 +139,7 @@ class Facts(object):
|
|||
self.facts['machine'] = platform.machine()
|
||||
self.facts['python_version'] = platform.python_version()
|
||||
self.facts['fqdn'] = socket.getfqdn()
|
||||
self.facts['hostname'] = platform.node()
|
||||
self.facts['hostname'] = platform.node().split('.')[0]
|
||||
self.facts['domain'] = '.'.join(self.facts['fqdn'].split('.')[1:])
|
||||
if self.facts['machine'] == 'x86_64':
|
||||
self.facts['architecture'] = self.facts['machine']
|
||||
|
|
Loading…
Reference in a new issue