mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-12 14:00:19 -04:00
20 lines
408 B
Bash
Executable File
20 lines
408 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: stompserver.sh,v 1.1 2012/08/12 16:13:03 imil Exp $
|
|
#
|
|
# PROVIDE: stompserver
|
|
# REQUIRE: DAEMON
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="stompserver"
|
|
rcvar=${name}
|
|
command="@PREFIX@/bin/stompserver"
|
|
required_files="@STOMPSERVER_RCD_CFG@/stompserver.conf"
|
|
pidfile="@STOMPSERVER_RCD_PID@"
|
|
command_args="-C @STOMPSERVER_RCD_CFG@/stompserver.conf"
|
|
procname="@RUBY@"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|