1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Name platform.node() fact as "nodename"

This commit is contained in:
Herby Gillot 2014-03-25 11:20:19 -04:00
parent c0886a5f3a
commit 94297950a0

View file

@ -108,7 +108,7 @@ class Facts(object):
self.facts['python_version'] = platform.python_version()
self.facts['fqdn'] = socket.getfqdn()
self.facts['hostname'] = platform.node().split('.')[0]
self.facts['full_hostname'] = platform.node()
self.facts['nodename'] = platform.node()
self.facts['domain'] = '.'.join(self.facts['fqdn'].split('.')[1:])
arch_bits = platform.architecture()[0]
self.facts['userspace_bits'] = arch_bits.replace('bit', '')