]> git.saurik.com Git - apple/launchd.git/blob - launchd/src/rc.shutdown
launchd-152.tar.gz
[apple/launchd.git] / launchd / src / rc.shutdown
1 #!/bin/sh
2 # Copyright 1997-2004 Apple Computer, Inc.
3
4 . /etc/rc.common
5
6 if [ -f /etc/rc.shutdown.local ]; then
7 sh /etc/rc.shutdown.local
8 fi
9
10 SystemStarter stop
11
12 kill -TERM 1
13
14 exit 0