projects
/
chef.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
35604b8
)
Exclude loop and rtc from default modules in 16.04
author
Tom Hughes
<tom@compton.nu>
Mon, 16 May 2016 14:32:15 +0000
(15:32 +0100)
committer
Tom Hughes
<tom@compton.nu>
Mon, 16 May 2016 14:32:15 +0000
(15:32 +0100)
cookbooks/hardware/attributes/default.rb
patch
|
blob
|
history
diff --git
a/cookbooks/hardware/attributes/default.rb
b/cookbooks/hardware/attributes/default.rb
index f80e6a528d6bf2476d45dea3331733da95a1a8dc..81416582ddab885ae27ca6b9a64015880115fd9f 100644
(file)
--- a/
cookbooks/hardware/attributes/default.rb
+++ b/
cookbooks/hardware/attributes/default.rb
@@
-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] = {}