19 lines
421 B
Ruby
19 lines
421 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Facts
|
||
|
module Openbsd
|
||
|
module Ruby
|
||
|
class Platform
|
||
|
FACT_NAME = 'ruby.platform'
|
||
|
ALIASES = 'rubyplatform'
|
||
|
|
||
|
def call_the_resolver
|
||
|
fact_value = Facter::Resolvers::Ruby.resolve(:platform)
|
||
|
|
||
|
[Facter::ResolvedFact.new(FACT_NAME, fact_value), Facter::ResolvedFact.new(ALIASES, fact_value, :legacy)]
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|