Codebase list facter / cf899a3
(maint) Return nil on sysctl command lookup fail See also 7fc668519f8e. Adrien Thebo 10 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
2727 end
2828
2929 def self.uptime_sysctl
30 output = Facter::Core::Execution.exec("#{uptime_sysctl_cmd} 2>/dev/null")
30 output = Facter::Core::Execution.exec("#{uptime_sysctl_cmd} 2>/dev/null", :on_fail => nil)
3131 if not output.empty?
3232 compute_uptime(Time.at(output.match(/\d+/)[0].to_i))
3333 end