mirror of
git://slackware.nl/current.git
synced 2025-02-15 08:50:09 +01:00
7 lines
274 B
Bash
7 lines
274 B
Bash
![]() |
if [ -r etc/asound.state -a ! -r var/lib/alsa/asound.state -a ! -L etc/asound.state ]; then
|
||
|
mv etc/asound.state var/lib/alsa
|
||
|
fi
|
||
|
# Better a dangling symlink than for nobody to know where this went:
|
||
|
rm -f etc/asound.state
|
||
|
( cd etc && ln -sf ../var/lib/alsa/asound.state . )
|