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

set CPU architecture correctly for OpenBSD (powerpc not macppc, etc.)

This commit is contained in:
Stuart Henderson 2014-10-30 13:25:50 +00:00
parent fe0ab8e750
commit 419872373e

View file

@ -168,6 +168,8 @@ class Facts(object):
rc, out, err = module.run_command("/usr/sbin/bootinfo -p")
data = out.split('\n')
self.facts['architecture'] = data[0]
elif self.facts['system'] == 'OpenBSD':
self.facts['architecture'] = platform.uname()[5]
def get_local_facts(self):