summaryrefslogtreecommitdiffstats
path: root/abs/core/poweroff-scripts/shutdown.script
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core/poweroff-scripts/shutdown.script')
-rw-r--r--abs/core/poweroff-scripts/shutdown.script4
1 files changed, 2 insertions, 2 deletions
diff --git a/abs/core/poweroff-scripts/shutdown.script b/abs/core/poweroff-scripts/shutdown.script
index 31881e8..978f7a2 100644
--- a/abs/core/poweroff-scripts/shutdown.script
+++ b/abs/core/poweroff-scripts/shutdown.script
@@ -29,14 +29,14 @@ then
if [ x$reboot = x1 ]
then
- wall "System will reboot in $delay seconds"
+ echo "System will reboot in $delay seconds" | wall
sleep $delay
/sbin/runit-init 6
fi
if [ x$halt = x1 ]
then
- wall "System will poweroff in $delay seconds"
+ echo "System will poweroff in $delay seconds" | wall
sleep $delay
/sbin/runit-init 0
fi