2013-12-22 02:21:11 +05:30
|
|
|
#!@SBINDIR@/openrc-run
|
2015-12-05 04:22:19 +05:30
|
|
|
# Copyright (c) 2007-2015 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
|
|
|
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
|
|
|
#
|
|
|
|
# This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
# the LICENSE file found in the top-level directory of this
|
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
2007-12-05 21:52:20 +05:30
|
|
|
|
|
|
|
extra_commands="restore"
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
depend()
|
|
|
|
{
|
2008-02-19 19:45:53 +05:30
|
|
|
need localmount
|
2012-07-03 08:34:22 +05:30
|
|
|
keyword -jail -prefix
|
2007-12-05 21:52:20 +05:30
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
restore()
|
|
|
|
{
|
2007-12-05 21:52:20 +05:30
|
|
|
local mixer= retval=0
|
|
|
|
ebegin "Restoring mixer settings"
|
|
|
|
eindent
|
|
|
|
for mixer in /dev/mixer*; do
|
|
|
|
if [ -r "/var/db/${mixer#/dev/}-state" ]; then
|
2009-04-27 13:21:18 +05:30
|
|
|
vebegin "$mixer"
|
|
|
|
mixer -f "$mixer" \
|
2008-01-11 17:43:46 +05:30
|
|
|
$(cat "/var/db/${mixer#/dev/}-state") >/dev/null
|
2007-12-05 21:52:20 +05:30
|
|
|
veend $?
|
2011-11-11 08:16:08 +05:30
|
|
|
: $(( retval += $? ))
|
2007-12-05 21:52:20 +05:30
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
start()
|
|
|
|
{
|
2007-12-05 21:52:20 +05:30
|
|
|
restore
|
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
stop()
|
|
|
|
{
|
2007-12-05 21:52:20 +05:30
|
|
|
local mixer= retval=0
|
|
|
|
ebegin "Saving mixer settings"
|
|
|
|
eindent
|
|
|
|
for mixer in /dev/mixer*; do
|
2009-04-27 13:21:18 +05:30
|
|
|
vebegin "$mixer"
|
|
|
|
mixer -f "$mixer" -s >/var/db/"${mixer#/dev/}"-state
|
2007-12-05 21:52:20 +05:30
|
|
|
veend $?
|
2011-11-11 08:16:08 +05:30
|
|
|
: $(( retval += $? ))
|
2007-12-05 21:52:20 +05:30
|
|
|
done
|
|
|
|
eoutdent
|
2009-04-27 13:21:18 +05:30
|
|
|
eend $retval
|
2007-12-05 21:52:20 +05:30
|
|
|
}
|