blob: 39a764fda987052c12a4cec17460fec3d7479dcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/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
|