mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-08 18:35:41 +01:00
alsaconf: add Slackware support
Add Slackware support. Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
This commit is contained in:
parent
bbd71560bc
commit
1a9b839b2f
1 changed files with 4 additions and 0 deletions
|
@ -65,6 +65,8 @@ elif test -f /etc/redhat-release && grep -q "Red Hat" /etc/redhat-release; then
|
|||
distribution="redhat"
|
||||
elif test -f /etc/fedora-release && grep -q "Fedora" /etc/fedora-release; then
|
||||
distribution="fedora"
|
||||
elif [ -f /etc/slackware-version -o -f /etc/slamd64-version ]; then
|
||||
distribution="slackware"
|
||||
else
|
||||
distribution="unknown"
|
||||
fi
|
||||
|
@ -490,6 +492,8 @@ acex() {
|
|||
|
||||
if [ "$distribution" = "debian" ]; then
|
||||
rcalsasound=/etc/init.d/alsa
|
||||
elif [ -x /etc/rc.d/rc.alsa ]; then
|
||||
rcalsasound=/etc/rc.d/rc.alsa
|
||||
elif [ -x /etc/init.d/alsasound ]; then
|
||||
rcalsasound=/etc/init.d/alsasound
|
||||
elif [ -x /usr/sbin/rcalsasound ]; then
|
||||
|
|
Loading…
Reference in a new issue