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
No known key found for this signature in database
GPG key ID: CB8D50BB77BB3C48
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"