Add much needed scripts to /etc/rc.d
[dragonfly.git] / etc / rc.d / route6d
1 #!/bin/sh
2 #
3 # $NetBSD: route6d,v 1.5 2002/03/22 04:34:00 thorpej Exp $
4 # $FreeBSD: src/etc/rc.d/route6d,v 1.5 2003/01/25 23:14:08 mtm Exp $
5 # $DragonFly: src/etc/rc.d/route6d,v 1.3 2004/01/27 00:42:45 rob Exp $
6 #
7
8 # PROVIDE: route6d
9 # REQUIRE: network_ipv6
10 # KEYWORD: DragonFly
11
12 . /etc/rc.subr
13
14 name="route6d"
15
16 # XXX - Executable may be in a different location. The $name variable
17 #       is different from the variable in rc.conf(5) so the
18 #       subroutines in rc.subr won't catch it. In this case, it
19 #       is also needed by the eval statement in the FreeBSD conditional.
20 #
21 load_rc_config $name
22 rcvar="ipv6_router_enable"
23 command="${ipv6_router:-/usr/sbin/${name}}"
24 eval ${name}_flags=\"${ipv6_router_flags}\"
25
26 run_rc_command "$1"