]> git.openstreetmap.org Git - chef.git/commitdiff
Gather management controller information
authorTom Hughes <tom@compton.nu>
Mon, 14 Dec 2015 10:33:30 +0000 (10:33 +0000)
committerTom Hughes <tom@compton.nu>
Mon, 14 Dec 2015 10:39:08 +0000 (10:39 +0000)
cookbooks/hardware/templates/default/ohai.rb.erb

index e8e01845ecb5c6b2ef21b984063b17e21df16f9a..21790a804d4db9794b51cf99ea02819344fe7c6c 100644 (file)
@@ -792,6 +792,26 @@ Ohai.plugin(:Hardware) do
     end
   end
 
     end
   end
 
+  def mc_device
+    device = {}
+
+    IO.popen(["ipmitool", "mc", "info"]).each_with_object([]) do |line, devices|
+      if line =~ /(Product [A-Z ]+[A-Z])\s*:\s+(.*\S)\s+\(.*\)\s*$/i
+        device[Regexp.last_match(1).tr(" ", "_").downcase.to_sym] = Regexp.last_match(2)
+      elsif line =~ /([A-Z ]+[A-Z])\s*:\s+(.*\S)\s*$/i
+        device[Regexp.last_match(1).tr(" ", "_").downcase.to_sym] = Regexp.last_match(2)
+      end
+    end
+
+    IO.popen(["ipmitool", "mc", "guid"]).each_with_object([]) do |line, devices|
+      if line =~ /^System GUID\s*:\s+(\S+)\s*$/
+        device[:system_guid] = Regexp.last_match(1)
+      end
+    end
+
+    device
+  end
+
   collect_data(:default) do
     hardware Mash.new
 
   collect_data(:default) do
     hardware Mash.new
 
@@ -800,5 +820,6 @@ Ohai.plugin(:Hardware) do
     hardware[:memory] = memory_devices
     hardware[:disk] = disk_devices
     hardware[:psu] = psu_devices
     hardware[:memory] = memory_devices
     hardware[:disk] = disk_devices
     hardware[:psu] = psu_devices
+    hardware[:mc] = mc_device
   end
 end
   end
 end