efee3f3767
The GNU Gatekeeper is an open-source project that implement an H.323 gatekeeper. A gatekeeper provides call control services to the H.323 endpoints. It is an integral part of most usefull internet telephony installations that are based on the H.323 standard.
21 lines
436 B
Bash
21 lines
436 B
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: gnugk.sh,v 1.1.1.1 2004/10/09 20:47:21 mjl Exp $
|
|
#
|
|
|
|
# PROVIDE: gnugk
|
|
# REQUIRE: DAEMON LOGIN
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="gnugk"
|
|
help_name="gnugk"
|
|
rcvar=$name
|
|
command="@PREFIX@/bin/${name}"
|
|
required_files="@PKG_SYSCONFDIR@/gnugk.ini"
|
|
command_args="-c $required_files 2>&1 > /dev/null &"
|
|
# pidfile="@JABBERD_PIDDIR@/${help_name}.pid"
|
|
# jabberd_user="@JABBERD_USER@"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|