Skip to content

Commit

Permalink
Revert "(FACT-3442) Update os.architecture fact for debian and ubuntu…
Browse files Browse the repository at this point in the history
… to arm64"

This reverts commit dc1837a.
  • Loading branch information
mhashizume committed Nov 10, 2023
1 parent 749f4a3 commit 7e34fe2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions acceptance/lib/facter/acceptance/base_fact_utils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def debian_expected_facts(agent)
os_hardware = 'x86_64'
processor_model_pattern = /(Intel\(R\).*)|(AMD.*)/
elsif agent['platform'] =~ /aarch64/
os_arch = 'arm64'
os_arch = 'aarch64'
os_hardware = 'aarch64'
processor_model_pattern = // # FACT-3439 - facter doesn't figure out the processor type on these machines
else
Expand Down Expand Up @@ -391,7 +391,7 @@ def ubuntu_expected_facts(agent)
os_hardware = 'x86_64'
processor_model_pattern = /(Intel\(R\).*)|(AMD.*)/
elsif agent['platform'] =~ /aarch64/
os_arch = 'arm64'
os_arch = 'aarch64'
os_hardware = 'aarch64'
processor_model_pattern = // # facter doesn't figure out the processor type on these machines
else
Expand Down

0 comments on commit 7e34fe2

Please sign in to comment.