30ec3ea279
development. Based on wip/nginx.
19 lines
374 B
Bash
19 lines
374 B
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: nginx.sh,v 1.2 2010/01/23 16:32:11 joerg Exp $
|
|
#
|
|
# PROVIDE: nginx
|
|
# REQUIRE: DAEMON
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="nginx"
|
|
rcvar=${name}
|
|
command="@PREFIX@/sbin/${name}"
|
|
required_files="@PKG_SYSCONFDIR@/${name}.conf"
|
|
pidfile="@VARBASE@/run/${name}.pid"
|
|
start_precmd="ulimit -n 2048"
|
|
extra_commands="reload"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|