blob: 05a82be4c0794fe23ad0ac0a08e5d5af251fb08e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/sh
#
# reboot Execute the reboot command.
#
# Version: @(#)reboot 2.75 22-Jun-1998 miquels@cistron.nl
#
PATH=/sbin:/bin:/usr/sbin:/usr/bin
echo -n "Rebooting... "
scc -p restart
reboot -d -f -i
|