xref: /dragonfly/etc/rc.d/rtsold (revision d4ef6694)
1#!/bin/sh
2#
3# $NetBSD: rtsold,v 1.5 2002/03/22 04:34:00 thorpej Exp $
4# $FreeBSD: src/etc/rc.d/rtsold,v 1.2 2002/06/13 22:14:36 gordon Exp $
5# $DragonFly: src/etc/rc.d/rtsold,v 1.4 2005/11/19 21:47:32 swildner Exp $
6#
7
8# PROVIDE: rtsold
9# REQUIRE: DAEMON
10# BEFORE:  LOGIN
11
12. /etc/rc.subr
13
14name="rtsold"
15rcvar=`set_rcvar`
16command="/usr/sbin/${name}"
17start_precmd="rtsold_precmd"
18
19rtsold_precmd()
20{
21	if [ "$ip6mode" != "autohost" ]; then
22		warn "\$ip6mode must be set to 'autohost' to use ${name}."
23		return 1
24	fi
25}
26
27load_rc_config $name
28run_rc_command "$1"
29