]> git.openstreetmap.org Git - chef.git/commitdiff
Exclude loop and rtc from default modules in 16.04
authorTom Hughes <tom@compton.nu>
Mon, 16 May 2016 14:32:15 +0000 (15:32 +0100)
committerTom Hughes <tom@compton.nu>
Mon, 16 May 2016 14:32:15 +0000 (15:32 +0100)
cookbooks/hardware/attributes/default.rb

index f80e6a528d6bf2476d45dea3331733da95a1a8dc..81416582ddab885ae27ca6b9a64015880115fd9f 100644 (file)
@@ -1,4 +1,9 @@
-default[:hardware][:modules] = %w(loop lp rtc)
+default[:hardware][:modules] = if node[:lsb][:release].to_f >= 16.04
+                                 %w(lp)
+                               else
+                                 %w(loop lp rtc)
+                               end
+
 default[:hardware][:grub][:cmdline] = %w(nomodeset)
 default[:hardware][:sensors] = {}