Merge pull request #9458 from sthen/openbsd_arch
set CPU architecture correctly for OpenBSD (powerpc not macppc, etc.)
This commit is contained in:
commit
5d729edd2f
1 changed files with 2 additions and 0 deletions
|
@ -174,6 +174,8 @@ class Facts(object):
|
||||||
rc, out, err = module.run_command("/usr/sbin/bootinfo -p")
|
rc, out, err = module.run_command("/usr/sbin/bootinfo -p")
|
||||||
data = out.split('\n')
|
data = out.split('\n')
|
||||||
self.facts['architecture'] = data[0]
|
self.facts['architecture'] = data[0]
|
||||||
|
elif self.facts['system'] == 'OpenBSD':
|
||||||
|
self.facts['architecture'] = platform.uname()[5]
|
||||||
|
|
||||||
|
|
||||||
def get_local_facts(self):
|
def get_local_facts(self):
|
||||||
|
|
Loading…
Reference in a new issue