18 lines
284 B
Bash
Executable File
18 lines
284 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: inetd,v 1.1.1.1 2000/03/10 11:53:25 lukem Exp $
|
|
#
|
|
|
|
# PROVIDE: inetd
|
|
# REQUIRE: daemon login
|
|
|
|
. /etc/rc.subr
|
|
. /etc/rc.conf
|
|
|
|
name="inetd"
|
|
command="/usr/sbin/${name}"
|
|
pidfile="/var/run/${name}.pid"
|
|
required_files="/etc/${name}.conf"
|
|
|
|
run_rc_command "$1" "reload"
|