0a37121ca4
across reboots. PR: 35028 Submitted by: Mike Meyer <mwm@mired.org>
17 lines
278 B
Bash
17 lines
278 B
Bash
#!/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
|