]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame_incremental - config/install/halt
Kernelconfig und Rootfile nachgeliefert...
[people/pmueller/ipfire-2.x.git] / config / install / halt
... / ...
CommitLineData
1#!/bin/sh
2echo "Shutting down..."
3echo "Sending all processes the TERM signal..."
4/bin/killall5 -15
5sleep 3
6echo "Sending all processes the KILL signal..."
7/bin/killall5 -9
8sleep 3
9echo "Unmounting filesystems"
10/bin/umount /tmp
11/bin/umount /sys
12/bin/umount /dev/pts
13/bin/umount /dev
14/bin/umount /root
15/bin/umount /proc
16echo "Unmounting root"
17/bin/mount -n -o remount,ro /
18/bin/reboot