source: bootscripts-embedded/clfs/rc.d/shutdown@ f25bf53

Last change on this file since f25bf53 was f25bf53, checked in by Jim Gifford <clfs@…>, 16 years ago

Formatting change to embedded

  • Property mode set to 100755
File size: 491 bytes
Line 
1#!/bin/ash
2
3# System Shutdown Script
4#
5
6. /etc/rc.d/init.d/functions
7
8echo
9echo "System is going down for reboot or halt now."
10echo
11
12echo "Starting stop scripts."
13
14for i in /etc/rc.d/stop/*; do
15 if [ -x $i ]; then
16 $i stop
17 fi
18done
19
20echo -n "Syncing hardware clock to system clock:"
21hwclock --systohc --utc
22check_status
23
24echo -n "Disabling swap space: "
25swapoff -a
26check_status
27
28echo -n "Syncing all filesystems: "
29sync
30check_status
31
32echo -n "Unmounting all filesystems: "
33umount -a -r
Note: See TracBrowser for help on using the repository browser.