blob: 3967b54fe93def4e6672fc642bb32cec08b10c5f (
plain) (
tree)
|
|
#!/bin/sh
# $FreeBSD$
MIXERSTATE=/var/db/mixer-state
case $1 in
start)
[ -r $MIXERSTATE ] && /usr/sbin/mixer `cat $MIXERSTATE` > /dev/null
;;
stop)
/usr/sbin/mixer -s > $MIXERSTATE
;;
*)
echo "usage: `basename $0` {start|stop}" >&2
exit 64
;;
esac
|