Class: Facts::Debian::Os::Architecture
- Inherits:
-
Object
- Object
- Facts::Debian::Os::Architecture
- Defined in:
- lib/facter/facts/debian/architecture.rb
Constant Summary collapse
- FACT_NAME =
'os.architecture'
- ALIASES =
'architecture'
Instance Method Summary collapse
Instance Method Details
#call_the_resolver ⇒ Object
10 11 12 13 14 15 16 |
# File 'lib/facter/facts/debian/architecture.rb', line 10 def call_the_resolver fact_value = Facter::Resolvers::Uname.resolve(:machine) fact_value = 'amd64' if fact_value == 'x86_64' fact_value = 'i386' if /i[3456]86|pentium/.match?(fact_value) [Facter::ResolvedFact.new(FACT_NAME, fact_value), Facter::ResolvedFact.new(ALIASES, fact_value, :legacy)] end |