We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0e757f6 + 4f32a25 commit 120a43dCopy full SHA for 120a43d
2 files changed
bosh-stemcell/spec/support/os_image_linux_kernel_modules_shared_examples.rb
@@ -89,4 +89,10 @@
89
its(:content) { should match "install floppy /bin/true" }
90
end
91
92
+
93
+ context "prevent algif_aead module from being loaded" do
94
+ describe file("/etc/modprobe.d/blacklist.conf") do
95
+ its(:content) { should match "install algif_aead /bin/true" }
96
+ end
97
98
stemcell_builder/stages/system_kernel_modules/apply.sh
@@ -20,6 +20,7 @@ install squashfs /bin/true
20
install udf /bin/true
21
install rds /bin/true
22
install floppy /bin/true
23
+install algif_aead /bin/true
24
options ipv6 disable=1' >> $chroot/etc/modprobe.d/blacklist.conf
25
26
echo '# prevent nouveau from loading
0 commit comments