openrc/init.d/mixer.in

55 lines
1.2 KiB
Plaintext
Raw Normal View History

#!@SBINDIR@/openrc-run
# 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/HEAD/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/HEAD/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"
depend()
{
need localmount
keyword -jail -prefix
2007-12-05 21:52:20 +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" \
$(cat "/var/db/${mixer#/dev/}-state") >/dev/null
2007-12-05 21:52:20 +05:30
veend $?
: $(( retval += $? ))
2007-12-05 21:52:20 +05:30
fi
done
}
start()
{
2007-12-05 21:52:20 +05:30
restore
}
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 $?
: $(( 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
}