mirror of
https://github.com/Kicksecure/security-misc.git
synced 2024-12-26 07:19:27 -05:00
remount-secure: disable debugging to save space in initrd
This commit is contained in:
parent
ca9603af17
commit
1123d23114
@ -23,9 +23,12 @@ init() {
|
||||
|
||||
$output_command "$0: INFO: START"
|
||||
|
||||
if [ "$(id -u)" != "0" ]; then
|
||||
$output_command "ERROR: must be run as root! sudo $0"
|
||||
exit 1
|
||||
## dracut does not have id. Saving space in initial ramdisk.
|
||||
if command -v id &>/dev/null ; then
|
||||
if [ "$(id -u)" != "0" ]; then
|
||||
$output_command "ERROR: must be run as root! sudo $0"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
mkdir --parents "/run/remount-secure"
|
||||
|
@ -5,11 +5,14 @@
|
||||
|
||||
# called by dracut
|
||||
check() {
|
||||
## For debugging only.
|
||||
## Saving space in initial ramdisk.
|
||||
#require_binaries id || return 1
|
||||
#require_binaries env || return 1
|
||||
|
||||
require_binaries findmnt || return 1
|
||||
require_binaries touch || return 1
|
||||
require_binaries grep || return 1
|
||||
require_binaries id || return 1
|
||||
require_binaries env || return 1
|
||||
require_binaries mount || return 1
|
||||
require_binaries remount-secure || return 1
|
||||
return 0
|
||||
@ -22,11 +25,14 @@ depends() {
|
||||
|
||||
# called by dracut
|
||||
install() {
|
||||
## For debugging only.
|
||||
## Saving space in initial ramdisk.
|
||||
#inst_multiple id
|
||||
#inst_multiple env
|
||||
|
||||
inst_multiple findmnt
|
||||
inst_multiple touch
|
||||
inst_multiple grep
|
||||
inst_multiple id
|
||||
inst_multiple env
|
||||
inst_multiple mount
|
||||
inst_multiple remount-secure
|
||||
inst_hook cleanup 90 "$moddir/remount-secure.sh"
|
||||
|
Loading…
Reference in New Issue
Block a user