mirror of
https://github.com/Kicksecure/security-misc.git
synced 2025-05-02 17:54:51 -04:00
remount-secure: disable debugging to save space in initrd
This commit is contained in:
parent
ca9603af17
commit
1123d23114
2 changed files with 16 additions and 7 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue