security-misc/usr/lib/dracut/modules.d/10ram-wipe-exit/wipe-ram-needshutdown.sh
Patrick Schleizer 20596488be
long options
2023-01-07 15:34:20 -05:00

35 lines
814 B
Bash
Executable File

#!/bin/sh
## Copyright (C) 2023 - 2023 ENCRYPTED SUPPORT LP <adrelanos@whonix.org>
## Copyright (C) 2023 - 2023 Friedrich Doku <friedrichdoku@gmail.com>
## See the file COPYING for copying conditions.
ram_wipe_check_needshutdown() {
local wipe_action
wipe_action=$(getarg wiperamaction)
## TODO: disable
wait $(pgrep sdmem)
info "wipe-ram.sh wiperamexit: DONE WAITING..."
if [ "$wipe_action" = "reboot" ]; then
reboot --force
fi
if [ "$wipe_action" = "poweroff" ]; then
poweroff --force
fi
if [ "$wipe_action" = "halt" ]; then
halt --force
fi
if [ "$wipe_action" = "error" ]; then
info "wipe-ram.sh wiperamexit: Choice of shutdown option led to an error. Shutting down..."
sleep 5
poweroff --force
fi
}
ram_wipe_check_needshutdown