mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix spelling of architecture for non-x86
This commit is contained in:
parent
7d50a5c2b7
commit
ae964b97c4
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ class Facts(object):
|
||||||
elif Facts._I386RE.search(self.facts['machine']):
|
elif Facts._I386RE.search(self.facts['machine']):
|
||||||
self.facts['architecture'] = 'i386'
|
self.facts['architecture'] = 'i386'
|
||||||
else:
|
else:
|
||||||
self.facts['archtecture'] = self.facts['machine']
|
self.facts['architecture'] = self.facts['machine']
|
||||||
if self.facts['system'] == 'Linux':
|
if self.facts['system'] == 'Linux':
|
||||||
self.get_distribution_facts()
|
self.get_distribution_facts()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue