This file is indexed.

/etc/init/alsa-restore.conf is in alsa-utils 1.0.27.2-1ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# alsa-restore - restore sound card(s') mixer state(s)
#
# This task restores the sound card(s') mixer state(s) to
# /var/lib/alsa/asound.state on startup

description	"Restore Sound Card State"

start on runlevel [2345]

env ALSACTLHOME=/var/run/alsa

task

pre-start script
    if ! test -d $ALSACTLHOME ; then
        mkdir -p $ALSACTLHOME
    fi
    if test -f /var/lib/alsa/state-daemon.conf ; then
        stop; exit 0
    fi
end script

exec /usr/sbin/alsactl -E HOME="$ALSACTLHOME" restore