mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
21 lines
363 B
Bash
Executable File
21 lines
363 B
Bash
Executable File
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: quake3server.sh,v 1.2 2004/01/22 10:35:56 xtraeme Exp $
|
|
#
|
|
|
|
# PROVIDE: quake3server
|
|
# REQUIRE: network mountcritlocal
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="quake3server"
|
|
rcvar=$name
|
|
q3rootdir="@PREFIX@/lib/lokigames/quake3server"
|
|
command="${q3rootdir}/q3ded &"
|
|
extra_commands="reload"
|
|
|
|
cd ${q3rootdir}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|