]> git.openstreetmap.org Git - chef.git/commitdiff
Gather information on power supplies
authorTom Hughes <tom@compton.nu>
Mon, 14 Dec 2015 09:52:00 +0000 (09:52 +0000)
committerTom Hughes <tom@compton.nu>
Mon, 14 Dec 2015 10:34:25 +0000 (10:34 +0000)
cookbooks/hardware/templates/default/ohai.rb.erb

index 87560b8ddd678939b5088ecfc46239d2fe64d1c2..24a844a7f20c564a61fddd0bfbbeda74dbb6f68f 100644 (file)
@@ -758,6 +758,21 @@ Ohai.plugin(:Hardware) do
     end
   end
 
     end
   end
 
+  def psu_devices
+    device = nil
+
+    IO.popen(["dmidecode", "-t", "39"]).each_with_object([]) do |line, devices|
+      if line =~ /^System Power Supply\s*$/
+        device = {}
+      elsif device && line =~ /^\s+([A-Z ]+):\s+(.*)\s*$/i
+        device[Regexp.last_match(1).tr(" ", "_").downcase.to_sym] = Regexp.last_match(2).strip
+      elsif device && line =~ /^\s*$/
+        devices << device
+        device = nil
+      end
+    end
+  end
+
   collect_data(:default) do
     hardware Mash.new
 
   collect_data(:default) do
     hardware Mash.new
 
@@ -765,5 +780,6 @@ Ohai.plugin(:Hardware) do
     hardware[:network] = network_devices
     hardware[:memory] = memory_devices
     hardware[:disk] = disk_devices
     hardware[:network] = network_devices
     hardware[:memory] = memory_devices
     hardware[:disk] = disk_devices
+    hardware[:psu] = psu_devices
   end
 end
   end
 end