Sync usage with man page.
[netbsd-mini2440.git] / etc / rc.d / local
blob8e48b70dc498a475ab5b22805987df877662dc4f
1 #!/bin/sh
3 # $NetBSD: local,v 1.6 2002/03/22 04:33:59 thorpej Exp $
6 # REQUIRE: DAEMON
7 # PROVIDE: local
8 # BEFORE: LOGIN
9 # KEYWORD: shutdown
11 $_rc_subr_loaded . /etc/rc.subr
13 name="local"
14 start_cmd="local_start"
15 stop_cmd="local_stop"
17 local_start()
19 if [ -f /etc/rc.local ]; then
20 . /etc/rc.local
24 local_stop()
26 if [ -f /etc/rc.shutdown.local ]; then
27 . /etc/rc.shutdown.local
31 load_rc_config $name
32 run_rc_command "$1"