9 lines
162 B
Bash
9 lines
162 B
Bash
#!/bin/sh
|
|
# /sbin/reboot
|
|
for FILE in /etc/rc.d/*; do
|
|
[ -x /etc/rc.d/$FILE ] && /etc/rc.d/$FILE stop
|
|
done
|
|
sync
|
|
mount / -o remount,ro
|
|
echo b >/proc/sysrq-trigger
|