mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #10284 from mihirvj/devel-10221
Pulls machine id in ansible facts
This commit is contained in:
commit
414737557e
1 changed files with 4 additions and 1 deletions
|
@ -415,7 +415,10 @@ class Facts(object):
|
|||
break
|
||||
else:
|
||||
self.facts['distribution'] = name
|
||||
|
||||
machine_id = get_file_content("/var/lib/dbus/machine-id") or get_file_content("/etc/machine-id")
|
||||
if machine_id:
|
||||
machine_id = machine_id.split('\n')[0]
|
||||
self.facts["machine_id"] = machine_id
|
||||
self.facts['os_family'] = self.facts['distribution']
|
||||
if self.facts['distribution'] in OS_FAMILY:
|
||||
self.facts['os_family'] = OS_FAMILY[self.facts['distribution']]
|
||||
|
|
Loading…
Reference in a new issue