summaryrefslogtreecommitdiff
path: root/audio/rplay/files/rplayd.sh
diff options
context:
space:
mode:
Diffstat (limited to 'audio/rplay/files/rplayd.sh')
-rw-r--r--audio/rplay/files/rplayd.sh24
1 files changed, 21 insertions, 3 deletions
diff --git a/audio/rplay/files/rplayd.sh b/audio/rplay/files/rplayd.sh
index c1b7c7dfdc9..e9095dd4e38 100644
--- a/audio/rplay/files/rplayd.sh
+++ b/audio/rplay/files/rplayd.sh
@@ -1,7 +1,25 @@
#!/bin/sh
#
-# $NetBSD: rplayd.sh,v 1.1 2000/01/26 22:11:36 jlam Exp $
+# $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 [ -x @PREFIX@/sbin/rplayd ]; then
- echo -n ' rplayd'; @PREFIX@/sbin/rplayd
+if [ ! -d /etc/rc.d ]
+then
+ @ECHO@ -n ' ${name}'
+ ${command} ${rplayd_flags} ${command_args}
+else
+ load_rc_config $name
+ run_rc_command "$1"
fi