mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
This commit is contained in:
committed by
John R Barker
parent
49ea68ca63
commit
9f82f3fd14
3
changelogs/fragments/mac-product-name.yaml
Normal file
3
changelogs/fragments/mac-product-name.yaml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
minor_changes:
|
||||||
|
- facts - Alias ``ansible_model`` to ``ansible_product_name`` to more closely match other OSes
|
||||||
|
(https://github.com/ansible/ansible/issues/52233)
|
||||||
@@ -64,7 +64,7 @@ class DarwinHardware(Hardware):
|
|||||||
mac_facts = {}
|
mac_facts = {}
|
||||||
rc, out, err = self.module.run_command("sysctl hw.model")
|
rc, out, err = self.module.run_command("sysctl hw.model")
|
||||||
if rc == 0:
|
if rc == 0:
|
||||||
mac_facts['model'] = out.splitlines()[-1].split()[1]
|
mac_facts['model'] = mac_facts['product_name'] = out.splitlines()[-1].split()[1]
|
||||||
mac_facts['osversion'] = self.sysctl['kern.osversion']
|
mac_facts['osversion'] = self.sysctl['kern.osversion']
|
||||||
mac_facts['osrevision'] = self.sysctl['kern.osrevision']
|
mac_facts['osrevision'] = self.sysctl['kern.osrevision']
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user