http://qa.mandrakesoft.com/show_bug.cgi?id=4491
[EMAIL PROTECTED] changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From [EMAIL PROTECTED] 2003-05-08 11:11 -------
fixed in cvs. Thx. will be in 18mdk
--
Configure bugmail: http://qa.mandrakesoft.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
------- Reminder: -------
assigned_to: [EMAIL PROTECTED]
status: RESOLVED
creation_date:
description:
Here is a fix to make /etc/init.d/sound work again (variable module was always
empty !) :
--- /etc/init.d/sound.bak 2003-08-01 15:50:20.000000000 +0200
+++ /etc/init.d/sound 2003-08-04 19:50:58.000000000 +0200
@@ -40,7 +40,7 @@
phrase=$1
alias=$2
[ -n "$3" ] && opt="-r"
- /sbin/modprobe -c | module=`egrep -s "^alias( |\t)+"$alias"( |\t)+" | awk
'{ print $3 }'`
+ module=`/sbin/modprobe -c | egrep -s "^alias( |\t)+"$alias"( |\t)+" | awk
'{ print $3 }'`
if [ -n "$module" ] && [ "$module" != "off" ];then
action "$phrase ($module)" modprobe "$opt" $module
return $?