mirror of
https://git.freebsd.org/ports.git
synced 2025-05-20 02:53:10 -04:00
16 lines
266 B
Bash
16 lines
266 B
Bash
#!/bin/sh
|
|
|
|
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
|