Bug 7426 - Mixer settings not loaded correctly by /etc/rc.d/rc.sysinit
Summary: Mixer settings not loaded correctly by /etc/rc.d/rc.sysinit
Keywords:
Status: CLOSED DUPLICATE of bug 7366
Alias: None
Product: Red Hat Linux
Classification: Retired
Component: initscripts
Version: 6.1
Hardware: i386
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Bill Nottingham
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 1999-11-29 23:32 UTC by Scott C. Karlin
Modified: 2014-03-17 02:11 UTC (History)
1 user (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 1999-11-29 23:46:50 UTC
Embargoed:


Attachments (Terms of Use)

Description Scott C. Karlin 1999-11-29 23:32:22 UTC
There seems to be a bug in /etc/rc.d/rc.sysinit mixer load.
1.  The "if" statement syntax is wrong and will never be true.
2.  Since the action was directed to /dev/null, it would never display.

From initscripts-4.68-1.i386.rpm (rc.sysinit):
# Load mixer settings
if [ grep -q "14 sound" /proc/devices 2>/dev/null -a -f /etc/.aumixrc -a -x
/bin/aumix-minimal ]; then
        action "Loading mixer settings" /bin/aumix-minimal -f /etc/.aumixrc
-L >/dev/null
fi


This should be:
# Load mixer settings -- fixed by SCK 11/29/1999
if grep -q "14 sound" /proc/devices 2>/dev/null && [ -f /etc/.aumixrc -a -x
/bin/aumix-minimal ]; then
        action "Loading mixer settings" /bin/aumix-minimal -f /etc/.aumixrc
-L
fi

Comment 1 Bill Nottingham 1999-11-29 23:46:59 UTC
*** This bug has been marked as a duplicate of 7366 ***


Note You need to log in before you can comment on or make changes to this bug.