mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-04-28 16:17:38 -07:00
25 lines
677 B
Plaintext
25 lines
677 B
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
description="nserve is a HTTP server which distributes received jobs to a mw-qserve instance"
|
|
|
|
command="/usr/bin/nserve"
|
|
command_args="--port=${NSERVE_PORT} \
|
|
--interface=${NSERVE_INTERFACE} \
|
|
--qserve=${MW_QSERVE_INTERFACE}:${MW_QSERVE_PORT}"
|
|
|
|
pidfile="/var/run/${SVCNAME}.pid"
|
|
command_background="yes"
|
|
|
|
start_stop_daemon_args="--user ${NSERVE_USER:-mwlib} \
|
|
--group ${NSERVE_GROUP:-mwlib} \
|
|
${NSERVE_LOGFILE:+--stderr ${NSERVE_LOGFILE}} \
|
|
${NSERVE_LOGFILE:+--stdout ${NSERVE_LOGFILE}}"
|
|
|
|
depend() {
|
|
need net localmount
|
|
use mw-qserve
|
|
}
|