Since using platform.node, be sure to just return the hostname component.

This commit is contained in:
Michael DeHaan 2013-04-20 09:24:59 -04:00
parent f5e43d6a9a
commit b72dedc36e

2
setup
View file

@ -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']