-
-
Save anonymous/ed67168eb1fb96ef5daf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'facter' | |
models = Facter::Core::Execution.exec('qaucli -i | find "HBA Model"') | |
modelshash = {} | |
models.each_line.each_with_index do |line, index| | |
newmodels = Facter::Core::Execution.exec("qaucli -i #{index} | find \"HBA Model\"").split(':').last.strip | |
newmodels.split('\n').each do |pair| | |
key,value = pair.split(/\n/) | |
modelshash["qlogicmodel#{index}"] = key | |
#puts modelshash | |
end | |
end | |
p modelshash | |
Facter.add("qlogicmodels") do | |
setcode do | |
modelshash | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment