1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00
freebsd-ports/audio/umurmur/files/umurmur.in
Pawel Pekala abe10724ae Improve rc.d script
Suggested by:	dougb@
2011-12-30 18:48:29 +00:00

38 lines
718 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: umurmur
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# umurmur_enable (bool): Set to NO by default.
# Set it to YES to enable umurmur.
# umurmur_user (str): Set to "umurmur" by default.
# Set to change user account.
# umurmur_flags (str): Set to "" by default.
# Extra flags passed to start command.
#
. /etc/rc.subr
name=umurmur
rcvar=${name}_enable
# pidfile
pidfile="/var/run/umurmur/umurmur.pid"
command="%%PREFIX%%/bin/umurmurd"
command_args="-p ${pidfile}"
load_rc_config $name
# Set some defaults
: ${umurmur_enable="NO"}
: ${umurmur_user="umurmur"}
run_rc_command "$1"