18 lines
281 B
Bash
Executable File
18 lines
281 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: rpcbind,v 1.5 2000/09/19 13:04:39 lukem Exp $
|
|
#
|
|
|
|
# PROVIDE: rpcbind
|
|
# REQUIRE: NETWORK ntpdate syslogd named ppp
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="rpcbind"
|
|
rcvar=$name
|
|
command="/usr/sbin/${name}"
|
|
pidfile="/var/run/${name}.pid"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|