summaryrefslogtreecommitdiffstats
path: root/oss-mercurial/oss.rc
diff options
context:
space:
mode:
Diffstat (limited to 'oss-mercurial/oss.rc')
-rw-r--r--oss-mercurial/oss.rc32
1 files changed, 0 insertions, 32 deletions
diff --git a/oss-mercurial/oss.rc b/oss-mercurial/oss.rc
deleted file mode 100644
index 3f63378..0000000
--- a/oss-mercurial/oss.rc
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/bash
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-case "$1" in
- start)
- stat_busy 'Starting Open Sound System'
- if /usr/sbin/soundon
- then
- add_daemon oss
- stat_done
- else
- stat_fail
- fi
- ;;
- stop)
- stat_busy 'Stopping Open Sound System'
- if /usr/sbin/soundoff
- then
- rm_daemon oss
- stat_done
- else
- stat_fail
- fi
- ;;
- restart)
- $0 stop
- $0 start
- ;;
- *)
- echo "Usage: $0 {start|stop|restart}"
-esac