-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fact ipmitool fru #75
Open
b4ldr
wants to merge
2
commits into
jhoblitt:master
Choose a base branch
from
icann-dns:fact_ipmitool_fru
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#!/usr/bin/env ruby | ||
# frozen_string_literal: true | ||
|
||
Facter.add(:ipmitool, type: :aggregate) do | ||
# https://puppet.com/docs/puppet/latest/fact_overview.html | ||
confine kernel: 'Linux' | ||
confine is_virtual: false | ||
# TODO: consider confining based on which | ||
# this has the side affect that the ipmitool fact and ipmitool_mc_info facts would be Nil | ||
# if ipmi is not present instead of the curent values of | ||
# ipmitool: {"fru"=>{}, "mc_info"=>{"IPMI_Puppet_Service_Recommend"=>"stopped"}} | ||
# ipmitool_mc_info: {"IPMI_Puppet_Service_Recommend"=>"stopped"} | ||
# confine do | ||
# Facter::Util::Resolution.which('ipmitool') | ||
# end | ||
|
||
ipmitool_present = Facter::Util::Resolution.which('ipmitool') | ||
chunk(:fru) do | ||
retval = { fru: {} } | ||
if ipmitool_present | ||
ipmitool_output = Facter::Util::Resolution.exec('ipmitool fru print 0 2>/dev/null') | ||
ipmitool_output.each_line do |line| | ||
next unless line.include?(':') | ||
|
||
info = line.split(':', 2) | ||
next if info[1].strip.empty? | ||
|
||
key = info[0].strip.tr("\s", '_').downcase | ||
retval[:fru][key] = info[1].strip | ||
end | ||
end | ||
retval | ||
end | ||
|
||
chunk(:mc_info) do | ||
retval = { mc_info: { 'IPMI_Puppet_Service_Recommend' => 'stopped' } } | ||
if ipmitool_present | ||
ipmitool_output = Facter::Util::Resolution.exec('ipmitool mc info 2>/dev/null') | ||
|
||
ipmitool_output.each_line do |line| | ||
info = line.split(':') | ||
retval[:mc_info][info[0].strip] = info[1].strip if info.length == 2 && (info[1].strip != '') | ||
end | ||
retval[:mc_info]['IPMI_Puppet_Service_Recommend'] = 'running' if retval[:mc_info].fetch('Device Available', 'no') == 'yes' | ||
end | ||
retval | ||
end | ||
end |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'spec_helper' | ||
require 'facter' | ||
|
||
describe 'ipmitool', type: :fact do | ||
subject(:fact) { Facter.fact(:ipmitool) } | ||
|
||
before do | ||
# perform any action that should be run before every test | ||
Facter.clear | ||
Facter.fact(:kernel).stubs(:value).returns('Linux') | ||
Facter.fact(:is_virtual).stubs(:value).returns(false) | ||
end | ||
|
||
let(:fru_output) do | ||
<<~OUTPUT | ||
Board Mfg Date : Tue Mar 3 21:43:00 2015 | ||
Board Mfg : DELL | ||
Board Product : PowerEdge R220 | ||
Board Serial : 000000 | ||
Board Part Number : 0DRXF5A04 | ||
Product Manufacturer : DELL | ||
Product Name : Test | ||
Product Extra : 000000 | ||
OUTPUT | ||
end | ||
let(:mc_output) do | ||
<<~SAMPLE | ||
Device ID : 32 | ||
Device Revision : 1 | ||
Firmware Revision : 2.49 | ||
IPMI Version : 2.0 | ||
Manufacturer ID : 10876 | ||
Manufacturer Name : Supermicro | ||
Product ID : 43707 (0xaabb) | ||
Product Name : Unknown (0xAABB) | ||
Device Available : yes | ||
Provides Device SDRs : no | ||
Additional Device Support : | ||
Sensor Device | ||
SDR Repository Device | ||
SEL Device | ||
FRU Inventory Device | ||
IPMB Event Receiver | ||
IPMB Event Generator | ||
Chassis Device | ||
Aux Firmware Rev Info : | ||
0x00 | ||
0x00 | ||
0x00 | ||
0x00 | ||
SAMPLE | ||
end | ||
|
||
context 'with no ipmitool' do | ||
before do | ||
Facter::Util::Resolution.expects(:which).at_least(1).with('ipmitool').returns(nil) | ||
Facter::Util::Resolution.expects(:exec).with('ipmitool mc info 2>/dev/null').never | ||
Facter::Util::Resolution.expects(:exec).with('ipmitool fru print 0 2>/dev/null').never | ||
end | ||
|
||
it do | ||
expect(fact.value).to eq({ 'fru' => {}, 'mc_info' => { 'IPMI_Puppet_Service_Recommend' => 'stopped' } }) | ||
end | ||
end | ||
|
||
context 'with detailed output' do | ||
before do | ||
Facter::Util::Resolution.expects(:which).with('ipmitool').returns(true) | ||
Facter::Util::Resolution.expects(:exec).with('ipmitool mc info 2>/dev/null').returns(mc_output) | ||
Facter::Util::Resolution.expects(:exec).with('ipmitool fru print 0 2>/dev/null').returns(fru_output) | ||
end | ||
|
||
it do | ||
expect(fact.value).to eq( | ||
{ | ||
'mc_info' => { | ||
'Device ID' => '32', | ||
'Device Revision' => '1', | ||
'Firmware Revision' => '2.49', | ||
'IPMI Version' => '2.0', | ||
'IPMI_Puppet_Service_Recommend' => 'running', | ||
'Manufacturer ID' => '10876', | ||
'Manufacturer Name' => 'Supermicro', | ||
'Product ID' => '43707 (0xaabb)', | ||
'Product Name' => 'Unknown (0xAABB)', | ||
'Device Available' => 'yes', | ||
'Provides Device SDRs' => 'no', | ||
}, | ||
'fru' => { | ||
'board_mfg_date' => 'Tue Mar 3 21:43:00 2015', | ||
'board_mfg' => 'DELL', | ||
'board_product' => 'PowerEdge R220', | ||
'board_serial' => '000000', | ||
'board_part_number' => '0DRXF5A04', | ||
'product_manufacturer' => 'DELL', | ||
'product_name' => 'Test', | ||
'product_extra' => '000000', | ||
} | ||
} | ||
) | ||
end | ||
end | ||
end |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let me know if this is something worth pursuing or if you just want me to drop the comment.