freebsd-ports/audio/mpdscribble/files/mpdscribble.in
Doug Barton 1d6b4b3f91 Begin the process of deprecating sysutils/rc_subr by
s#. %%RC_SUBR%%#. /etc/rc.subr#
2010-03-27 00:15:24 +00:00

26 lines
408 B
Bash

#!/bin/sh
#
# PROVIDE: mpdscribble
# REQUIRE: LOGIN
# KEYWORD: shutdown
# Add the following line to /etc/rc.conf to enable mpdscribble:
#
#mpdscribble_enable="YES"
. /etc/rc.subr
name=mpdscribble
rcvar=`set_rcvar`
command=%%PREFIX%%/bin/mpdscribble
load_rc_config $name
: ${mpdscribble_enable="NO"}
: ${mpdscribble_user="nobody"}
command_args="--daemon-user ${mpdscribble_user}"
run_rc_command "$1"