blob: 5363df4ae7db4864f459836692ed8d010f3b7017 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/sh
#
# $NetBSD: isdnd,v 1.8 2002/03/22 04:33:58 thorpej Exp $
#
# PROVIDE: isdnd
# REQUIRE: NETWORKING syslogd mountcritremote
# BEFORE: SERVERS
#
# Note that this means that syslogd will not be listening on
# any isdn addresses. This is considered a feature.
#
. /etc/rc.subr
name="isdnd"
rcvar=$name
required_files="/etc/isdn/${name}.rc"
command="/usr/sbin/${name}"
pidfile="/var/run/${name}.pid"
load_rc_config $name
run_rc_command "$1"
|