X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=facts%2Fraidcontroller.rb;h=12d140fd078ae57347a77146c0befcf0fc0fa9ff;hb=6c0e762ea3621bcb1b3ac4173b06b3e0bb5b6a11;hp=f2834c2dcf3a72abc81f4ee7f94523a9b8a8dfb5;hpb=eb8d9c9ed20621f4081cb4049c4a6227aacb5f59;p=mirror%2Fdsa-puppet.git diff --git a/facts/raidcontroller.rb b/facts/raidcontroller.rb index f2834c2dc..12d140fd0 100644 --- a/facts/raidcontroller.rb +++ b/facts/raidcontroller.rb @@ -9,7 +9,7 @@ Facter.add("smartarraycontroller") do ishp = "true" if s =~ /RAID bus controller: (.*) Smart Array/ } end - ishp + ishp == "true" end end @@ -29,6 +29,20 @@ Facter.add("3warecontroller") do is3w = "true" if x =~ /Vendor: 3ware/ } end - is3w + is3w == "true" end end + +Facter.add("swraid") do + confine :kernel => :linux + setcode do + swraid = "false" + if FileTest.exist?("/proc/mdstat") && FileTest.exist?("/sbin/mdadm") + IO.foreach("/proc/mdstat") { |x| + swraid = "true" if x =~ /md[0-9]+ : active/ + } + end + swraid == "true" + end +end +