From 166a6863a1c249e68e3f38109b115503bc5663ec Mon Sep 17 00:00:00 2001 From: Patrick Schleizer Date: Sat, 7 Jan 2023 15:35:15 -0500 Subject: [PATCH] output --- .../dracut/modules.d/10ram-wipe-exit/wipe-ram-needshutdown.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/usr/lib/dracut/modules.d/10ram-wipe-exit/wipe-ram-needshutdown.sh b/usr/lib/dracut/modules.d/10ram-wipe-exit/wipe-ram-needshutdown.sh index 16bc5a1..e173b1f 100755 --- a/usr/lib/dracut/modules.d/10ram-wipe-exit/wipe-ram-needshutdown.sh +++ b/usr/lib/dracut/modules.d/10ram-wipe-exit/wipe-ram-needshutdown.sh @@ -13,14 +13,17 @@ ram_wipe_check_needshutdown() { info "wipe-ram.sh wiperamexit: DONE WAITING..." if [ "$wipe_action" = "reboot" ]; then + info "wipe-ram.sh wiperamexit: reboot..." reboot --force fi if [ "$wipe_action" = "poweroff" ]; then + info "wipe-ram.sh wiperamexit: poweroff..." poweroff --force fi if [ "$wipe_action" = "halt" ]; then + info "wipe-ram.sh wiperamexit: halt..." halt --force fi