summaryrefslogtreecommitdiff
path: root/audio/rplay/files/rplayd.sh
blob: e9095dd4e382ada72576643eccbfd48e24a3d9ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh
#
# $NetBSD: rplayd.sh,v 1.2 2001/11/21 17:55:55 jlam Exp $
#
# PROVIDE: rplayd
# REQUIRE: DAEMON

if [ -d /etc/rc.d -a -f /etc/rc.subr ]
then
	. /etc/rc.subr
fi

name="rplayd"
rcvar=$name
command="@PREFIX@/sbin/${name}"
required_files="@CONFDIR@/rplay.conf"

if [ ! -d /etc/rc.d ]
then
	@ECHO@ -n ' ${name}'
	${command} ${rplayd_flags} ${command_args}
else
	load_rc_config $name
	run_rc_command "$1"
fi