forked from kumina/fact-pci_devices
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pci_devices.rb
65 lines (59 loc) · 2.25 KB
/
pci_devices.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Copyright: Pieter Lexis <pieter@kumina.nl>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# There are no dependencies needed for this script, except for lspci.
# This script is only tested on Debian (Lenny and Squeeze), if you
# have any improvements, send a pull request, ticket or email.
# The latest version of this script is available on github at
# https://github.com/kumina/fact-pci_devices
def add_fact(fact, code)
Facter.add(fact) { setcode { code } }
end
case Facter.value(:operatingsystem)
when /Debian|Ubuntu/i
lspci = "/usr/bin/lspci"
when /RedHat|CentOS|Fedora|Scientific|SLES/i
lspci = "/sbin/lspci"
else
lspci = ""
end
# We can't do this if we don't know the location of lspci
if !lspci.empty? and FileTest.exists?(lspci)
# Create a hash of ALL PCI devices, the key is the PCI slot ID.
# { SLOT_ID => { ATTRIBUTE => VALUE }, ... }
slot=""
# after the following loop, devices will contain ALL PCI devices and the info returned from lspci
devices = {}
%x{#{lspci} -v -mm -k}.each_line do |line|
if not line =~ /^$/ # We don't need to parse empty lines
splitted = line.split(/\t/)
# lspci has a nice syntax:
# ATTRIBUTE:\tVALUE
# We use this to fill our hash
if splitted[0] =~ /^Slot:$/
slot=splitted[1].chomp
devices[slot] = {}
else
# The chop is needed to strip the ':' from the string
devices[slot][splitted[0].chop] = splitted[1].chomp
end
end
end
# To create your own facts, edit the following code:
raid_counter = 0
devices.each_key do |a|
case devices[a].fetch("Class")
when /^RAID/
add_fact("raidcontroller#{raid_counter}_vendor", "#{devices[a].fetch('Vendor')}")
add_fact("raidcontroller#{raid_counter}_driver", "#{devices[a].fetch('Driver')}")
raid_counter += 1
end
end
end