def read_sysctl_link(file)
File.basename(File.readlink(file))
- rescue Errno::ENOENT
+ rescue Errno::ENOENT, Errno::ENOTDIR
end
def read_sysctl_file(file)
IO.read(file).strip
- rescue Errno::ENOENT, Errno::EINVAL
+ rescue Errno::ENOENT, Errno::ENOTDIR, Errno::EINVAL
end
def parse_memory_size(size)
end
end
- disk[:model].sub!(/-.*$/, "")
+ disk[:model].sub!(/-.*$/, "") if disk[:model]
end
disk
end
def find_nvme_disks(devices)
- Dir.glob("/sys/class/misc/nvme*") do |device|
+ Dir.glob("/sys/class/nvme/nvme*") do |device|
controller = {
:id => devices[:controllers].count,
:pci_slot => File.basename(Pathname.new("#{device}/device").realpath),
end
end
- Dir.glob("#{device}/device/block/*").each do |block|
+ Dir.glob("#{device}/nvme*").each do |block|
size = read_sysctl_file("#{block}/size").to_f / 2
disk = {