]> git.saurik.com Git - apple/launchd.git/blob - launchd/src/StartupItems/AppServices
launchd-106.13.tar.gz
[apple/launchd.git] / launchd / src / StartupItems / AppServices
1 #!/bin/sh
2
3 ##
4 # Application Services
5 ##
6
7 . /etc/rc.common
8
9 StartService ()
10 {
11 # Launch Services
12 if [ -x /System/Library/Frameworks/ApplicationServices.framework/Frameworks/LaunchServices.framework/Versions/Current/Support/lsregister ]; then
13 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/LaunchServices.framework/Versions/Current/Support/lsregister -load
14 fi
15 }
16
17 StopService ()
18 {
19 return 0
20 }
21
22 RestartService ()
23 {
24 return 0
25 }
26
27 RunService "$1"