mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-08 20:07:50 -04:00
20 lines
383 B
Bash
20 lines
383 B
Bash
#!@SH@
|
|
#
|
|
# $NetBSD: dircproxy.sh,v 1.3 2008/06/17 12:53:54 tron Exp $
|
|
#
|
|
|
|
# PROVIDE: dircproxy
|
|
# REQUIRE: DAEMON
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="dircproxy"
|
|
rcvar=$name
|
|
command="@PREFIX@/bin/${name}"
|
|
command_args="-f @PKG_SYSCONFDIR@/${name}rc --pid-file=/var/run/${name}.pid"
|
|
pidfile="/var/run/${name}.pid"
|
|
required_files="@PKG_SYSCONFDIR@/${name}rc"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|