]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - etc/rc.d/local
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / etc / rc.d / local
1 #!/bin/sh
2 #
3 # $FreeBSD$
4 #
5
6 # PROVIDE: local
7 # REQUIRE: DAEMON
8 # BEFORE:  LOGIN
9 # KEYWORD: shutdown
10
11 . /etc/rc.subr
12
13 name="local"
14 start_cmd="local_start"
15 stop_cmd="local_stop"
16
17 local_start()
18 {
19         if [ -f /etc/rc.local ]; then
20                 echo -n 'Starting local daemons:'
21                 . /etc/rc.local
22                 echo '.'
23         fi
24 }
25
26 local_stop()
27 {
28         if [ -f /etc/rc.shutdown.local ]; then
29                 echo -n 'Shutting down local daemons:'
30                 . /etc/rc.shutdown.local
31                 echo '.'
32         fi
33 }
34
35 load_rc_config $name
36 run_rc_command "$1"