From 2054501db1b4f1abd66e1d85427ca87c2d855b3a Mon Sep 17 00:00:00 2001 From: Kevin Zink Date: Thu, 27 Aug 2026 21:45:55 +0200 Subject: [PATCH] Power is measured to the nearest tenth of a watt. --- lib/oxidized/model/aoscx.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/oxidized/model/aoscx.rb b/lib/oxidized/model/aoscx.rb index 2182f64eb..e98393143 100644 --- a/lib/oxidized/model/aoscx.rb +++ b/lib/oxidized/model/aoscx.rb @@ -57,7 +57,7 @@ def with_section(cfg, section, &block) end with_section(cfg, 'power-allocation') do |content| - content.gsub!(/^(.*) \d+ W$/, '\\1 ') + content.gsub!(/^(.*) \d+\.\d+ W$/, '\\1 ') end with_section(cfg, 'power-supply input-voltage') do |content|