blob: eee59cb32140d9bdb8d3259ada094d0234ce0a2f [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001#! /bin/sh
2#
3# Copyright Matthias Hentges <devel@hentges.net> (c) 2007
4# License: GPL (see http://www.gnu.org/licenses/gpl.txt for a copy of the license)
5#
6# Filename: alsa-state
7# Date: 20070308 (YMD)
8
9# source function library
10. /etc/init.d/functions
11
12asound_restore(){
13 echo "ALSA: Restoring mixer settings..."
14 if test -x /usr/sbin/alsactl -a -e #STATEDIR#/asound.state
15 then
16 /usr/sbin/alsactl -f #STATEDIR#/asound.state restore &
17 fi
18}
19
20asound_store(){
21 echo "ALSA: Storing mixer settings..."
22 if test -x /usr/sbin/alsactl
23 then
24 /usr/sbin/alsactl -f #STATEDIR#/asound.state store
25 fi
26}
27
28case "$1" in
29start) asound_restore ;;
30stop) asound_store ;;
31 status)
32 status /usr/sbin/alsactl;
33 exit $?
34 ;;
35 *)
36 echo "Usage: /etc/init.d/alsa-state {start|stop|status}"
37 exit 1
38 ;;
39esac