]> git.openstreetmap.org Git - chef.git/commitdiff
Avoid exceptions on machines with bonded interfaces
authorTom Hughes <tom@compton.nu>
Tue, 7 Jun 2016 15:13:57 +0000 (16:13 +0100)
committerTom Hughes <tom@compton.nu>
Tue, 7 Jun 2016 15:14:12 +0000 (16:14 +0100)
cookbooks/hardware/templates/default/ohai.rb.erb

index 8192d34c48bfee88b22d354cca6b39327f60cfb1..132d5bcacdb015bb697a958a35958363d7562cf0 100644 (file)
@@ -5,12 +5,12 @@ Ohai.plugin(:Hardware) do
 
   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)