]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame_incremental - config/install/halt
Revert "mod_perl by xpapa." Build not working iso (apache config)
[people/pmueller/ipfire-2.x.git] / config / install / halt
... / ...
CommitLineData
1#!/bin/sh
2# Clear screen
3/bin/clear
4
5echo "Shutting down..."
6echo "Sending all processes the TERM signal..."
7/bin/killall5 -15
8sleep 3
9echo "Sending all processes the KILL signal..."
10/bin/killall5 -9
11sleep 3
12echo "Unmounting filesystems"
13/bin/umount /tmp
14/bin/umount /sys
15/bin/umount /dev/pts
16/bin/umount /dev
17/bin/umount /root
18/bin/umount /proc
19echo "Unmounting root"
20/bin/mount -n -o remount,ro /
21/bin/reboot