disable remount-secure dracut modules

pending new systemd based implementation

https://github.com/Kicksecure/security-misc/pull/152
This commit is contained in:
Patrick Schleizer 2023-11-05 15:27:09 -05:00
parent 949c163370
commit d4494fd3c3
No known key found for this signature in database
GPG key ID: CB8D50BB77BB3C48
2 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,23 @@
#!/bin/sh
## Copyright (C) 2023 - 2023 ENCRYPTED SUPPORT LP <adrelanos@whonix.org>
## See the file COPYING for copying conditions.
## This script is intended to remount specified mount points with more secure
## options based on kernel command line parameters.
remount_hook() {
local remountsecure_action
## getarg returns the last parameter only.
## If /proc/cmdline contains 'remountsecure=0 remountsecure=1' the last one wins.
remountsecure_action=$(getarg remountsecure)
if ! remount-secure $remountsecure_action; then
warn "$0: ERROR: 'remount-secure $remountsecure_action' failed."
return 1
fi
info "$0: INFO: 'remount-secure $remountsecure_action' success."
return 0
}
remount_hook