security-misc/usr/lib/dracut/modules.d/10ram-wipe-exit/wipe-ram-needshutdown.sh

34 lines
948 B
Bash
Raw Normal View History

2023-01-06 10:50:34 -05:00
#!/bin/sh
2023-01-06 13:52:42 -05:00
## Copyright (C) 2023 - 2023 ENCRYPTED SUPPORT LP <adrelanos@whonix.org>
## Copyright (C) 2023 - 2023 Friedrich Doku <friedrichdoku@gmail.com>
2023-01-06 13:47:23 -05:00
## See the file COPYING for copying conditions.
2023-01-06 10:50:34 -05:00
ram_wipe_check_needshutdown() {
local wipe_action
wipe_action=$(getarg wiperamaction)
2023-01-07 14:35:30 -05:00
## TODO: disable
2023-01-06 10:50:34 -05:00
wait $(pgrep sdmem)
2023-01-07 12:49:18 -05:00
info "wipe-ram.sh wiperamexit: DONE WAITING..."
2023-01-06 10:50:34 -05:00
if [ "$wipe_action" = "reboot" ]; then
2023-01-07 15:35:15 -05:00
info "wipe-ram.sh wiperamexit: reboot..."
2023-01-07 15:34:20 -05:00
reboot --force
2023-01-07 15:35:45 -05:00
elif [ "$wipe_action" = "poweroff" ]; then
2023-01-07 15:35:15 -05:00
info "wipe-ram.sh wiperamexit: poweroff..."
2023-01-07 15:34:20 -05:00
poweroff --force
2023-01-07 15:35:45 -05:00
elif [ "$wipe_action" = "halt" ]; then
2023-01-07 15:35:15 -05:00
info "wipe-ram.sh wiperamexit: halt..."
2023-01-07 15:34:20 -05:00
halt --force
2023-01-06 10:50:34 -05:00
fi
2023-01-07 12:43:07 -05:00
2023-01-06 21:32:57 -05:00
if [ "$wipe_action" = "error" ]; then
2023-01-07 12:49:18 -05:00
info "wipe-ram.sh wiperamexit: Choice of shutdown option led to an error. Shutting down..."
2023-01-07 12:43:07 -05:00
sleep 5
2023-01-07 15:34:20 -05:00
poweroff --force
2023-01-06 21:32:57 -05:00
fi
2023-01-06 10:50:34 -05:00
}
ram_wipe_check_needshutdown