#677 closed defect (fixed)
modinfo error in mindi - modprobe impacted
Reported by: | victor gattegno | Owned by: | victor gattegno |
---|---|---|---|
Priority: | normal | Milestone: | 3.0.4 |
Component: | mindi | Version: | 3.0.3 |
Severity: | normal | Keywords: | modinfo modprobe |
Cc: |
Description
There is an error in mindi :
Line 3233:
for i in loop cdrom ide-cd isofs linear raid0 raid1 raid5 ; do modinfo 2> /dev/null 1> /dev/null if [ $? -eq 0 ]; then modprobe $i 2>&1 > /dev/null fi done
It should be :
for i in loop cdrom ide-cd isofs linear raid0 raid1 raid5 ; do modinfo $i 2> /dev/null 1> /dev/null if [ $? -eq 0 ]; then modprobe $i 2>&1 > /dev/null fi
Change History (8)
comment:4 by , 12 years ago
Owner: | changed from | to
---|
comment:5 by , 12 years ago
Through SVN, in "branches" I patched 3.0/mindi/mindi
It is the revision 3095
comment:6 by , 12 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:7 by , 12 years ago
Thanks Victor.
Next time, please write your comment in english, and use the convention #677 for designing the bug report (as you can see, trac creates autmatically a link to it, which is great when you navigate the code afterwards.
Here also mention the revision using brackets around the number to do the same on this side.
So fixed with rev [3095].
Note:
See TracTickets
for help on using tickets.
Otherwise modprobe is never executed, because result of modinfo (executed without a module name) is not 0.