slackbuilds_ponce/system/oss/rc.oss
Dugan Chen b66a27946b system/oss: Added. (an ALSA alternative)
The Open Sound System is a set of sound drivers that serve as
    an alternative to the usual ALSA architecture.
2010-05-14 23:31:50 +02:00

39 lines
594 B
Bash

#!/bin/sh
# Start/stop/restart OSS:
# Credit to Tsomi, on the 4Front Technologies forum:
# http://www.opensound.com/board2006/viewtopic.php?p=8174
oss_start() {
echo "Starting OSS..."
if [ -x /usr/sbin/soundon ]; then
/usr/sbin/soundon
else
echo "No /usr/sbin/soundon script found."
exit 1
fi
}
oss_stop() {
echo "Stopping OSS..."
/usr/sbin/soundoff
}
# See how we were called.
case "$1" in
start)
oss_start
;;
stop)
oss_stop
;;
restart)
oss_stop
sleep 1
oss_start
;;
*)
echo "Usage: $0 {start|stop|restart}"
;;
esac