mirror of
https://github.com/Kicksecure/security-misc.git
synced 2025-07-30 00:48:39 -04:00
11 lines
271 B
Bash
11 lines
271 B
Bash
#!/bin/bash
|
|
|
|
## Copyright (C) 2023 - 2024 ENCRYPTED SUPPORT LP <adrelanos@whonix.org>
|
|
## See the file COPYING for copying conditions.
|
|
|
|
set -x
|
|
set -e
|
|
|
|
sysctl -w kernel.modules_disabled=1
|
|
|
|
true "The loading of new modules to the kernel has been disabled by security-misc."
|