X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;ds=sidebyside;f=facts%2Fraidcontroller.rb;h=8a09a71ca76c464d12db88d1cb5d9d982e2d27cd;hb=df361af8358dc4084afc4ec502cab8546d6bf47a;hp=d4bdd07ae9e91aac88f9bc44cee2fa03bb5b4e53;hpb=c496cfa66b6d9b220a8ecaf08bdc1c4a9e8d8799;p=mirror%2Fdsa-puppet.git diff --git a/facts/raidcontroller.rb b/facts/raidcontroller.rb index d4bdd07ae..8a09a71ca 100644 --- a/facts/raidcontroller.rb +++ b/facts/raidcontroller.rb @@ -1,15 +1,15 @@ -Facter.add("raidcontroller") do +Facter.add("smartarraycontroller") do confine :kernel => :linux ENV["PATH"]="/bin:/sbin:/usr/bin:/usr/sbin" setcode do ishp = "false" lspciexists = system "/bin/bash -c 'which lspci >&/dev//null'" if $?.exitstatus == 0 - %x{lspci}.each { |s| + %x{lspci 2>&1}.each { |s| 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 +