Class: Facts::Linux::SystemUptime::Seconds
- Inherits:
-
Object
- Object
- Facts::Linux::SystemUptime::Seconds
- Defined in:
- lib/facter/facts/linux/system_uptime/seconds.rb
Constant Summary collapse
- FACT_NAME =
'system_uptime.seconds'
- ALIASES =
'uptime_seconds'
Instance Method Summary collapse
Instance Method Details
#call_the_resolver ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/facter/facts/linux/system_uptime/seconds.rb', line 10 def call_the_resolver hypervisors = Facter::Resolvers::Containers.resolve(:hypervisor) fact_value = if hypervisors && hypervisors[:docker] Facter::Resolvers::Linux::DockerUptime.resolve(:seconds) else Facter::Resolvers::Uptime.resolve(:seconds) end [Facter::ResolvedFact.new(FACT_NAME, fact_value), Facter::ResolvedFact.new(ALIASES, fact_value, :legacy)] end |