Files
StateGrid/install_shell/alsa
Qin Bo 2235771f09 Initial commit
Signed-off-by: Qin Bo <bqin@linx-info.com>
2014-02-19 09:07:55 +08:00

27 lines
323 B
Bash

#!/bin/sh
#
# /etc/rc.d/init.d/alsa: store/restore ALSA mixer levels
#
# location of the alsactl executable
ALSACTL=/usr/sbin/alsactl
case $1 in
start)
$ALSACTL restore
;;
stop)
$ALSACTL store
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "Usage: $0 [start|stop|restart]"
;;
esac
# End of file