We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1c1b06b + 76dfd1e commit 5297553Copy full SHA for 5297553
bosh-stemcell/spec/support/os_image_linux_kernel_modules_shared_examples.rb
@@ -83,4 +83,10 @@
83
its(:content) { should match 'install rds /bin/true' }
84
end
85
86
+
87
+ context 'prevent floppy module from being loaded' do
88
+ describe file('/etc/modprobe.d/blacklist.conf') do
89
+ its(:content) { should match 'install floppy /bin/true' }
90
+ end
91
92
stemcell_builder/stages/system_kernel_modules/apply.sh
@@ -19,6 +19,7 @@ install hfsplus /bin/true
19
install squashfs /bin/true
20
install udf /bin/true
21
install rds /bin/true
22
+install floppy /bin/true
23
options ipv6 disable=1' >> $chroot/etc/modprobe.d/blacklist.conf
24
25
echo '# prevent nouveau from loading
0 commit comments