summary refs log tree commit diff
path: root/contrib/rvnit/sv/00Kpoweroff
blob: 2fae08231377c11d85deecf7d04b4d69cf31d8cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
echo system halted.
sync

sleep 10

if [ -n "$RVNIT_WANT_REBOOT" ]; then
	reboot -f
else
	halt -f
fi