Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,10 @@
its(:content) { should match "install floppy /bin/true" }
end
end

context "prevent algif_aead module from being loaded" do
describe file("/etc/modprobe.d/blacklist.conf") do
its(:content) { should match "install algif_aead /bin/true" }
end
end
end
1 change: 1 addition & 0 deletions stemcell_builder/stages/system_kernel_modules/apply.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ install squashfs /bin/true
install udf /bin/true
install rds /bin/true
install floppy /bin/true
install algif_aead /bin/true
options ipv6 disable=1' >> $chroot/etc/modprobe.d/blacklist.conf

echo '# prevent nouveau from loading
Expand Down
Loading