remount-secure: disable debugging to save space in initrd

This commit is contained in:
Patrick Schleizer
2023-10-26 18:45:07 -04:00
parent ca9603af17
commit 1123d23114
2 changed files with 16 additions and 7 deletions

View File

@ -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"