Closed
Bug 344915
Opened 19 years ago
Closed 19 years ago
Non-installed modules are reported incorrectly
Categories
(Bugzilla :: Installation & Upgrading, defect)
Tracking
()
RESOLVED
FIXED
Bugzilla 3.0
People
(Reporter: wicked, Assigned: mkanat)
References
Details
(Keywords: regression)
Attachments
(1 file)
|
661 bytes,
patch
|
cso
:
review+
LpSolit
:
review+
|
Details | Diff | Splinter Review |
There's output like this for modules that are not installed/found:
Checking for LWP::UserAgent (any) ok: not found
So checksetup thinks it's ok to not have these. As such there's also no output explaining why you would need that module.
Probably a regression from bug 281494.
Comment 1•19 years ago
|
||
Looks to be a regression from bug 344661 to me...
If I remove the two lines added in that patch, my output goes from:
Checking for Image::Magick (any) ok: not found
to
Checking for Image::Magick (any) not found
Status: UNCONFIRMED → NEW
Ever confirmed: true
| Reporter | ||
Updated•19 years ago
|
Keywords: regression
| Assignee | ||
Updated•19 years ago
|
Target Milestone: --- → Bugzilla 2.24
| Assignee | ||
Comment 2•19 years ago
|
||
It turns out to be a slight bug in the regex--it was stripping *all* starting zeros, including the 0 in 0.14 and in "0" itself. Now it only strips real padding zeros.
Assignee: installation → mkanat
Status: NEW → ASSIGNED
Attachment #229633 -
Flags: review?(colin.ogilvie)
| Assignee | ||
Updated•19 years ago
|
Attachment #229633 -
Flags: review?(LpSolit)
Comment 3•19 years ago
|
||
Comment on attachment 229633 [details] [diff] [review]
v1
This fixes the problem on this bug, however, I don't know if it fixes the problem that the original regex was designed to solve.
Attachment #229633 -
Flags: review?(colin.ogilvie) → review+
Comment 4•19 years ago
|
||
Comment on attachment 229633 [details] [diff] [review]
v1
r=LpSolit
Attachment #229633 -
Flags: review?(LpSolit) → review+
Updated•19 years ago
|
Flags: approval?
Updated•19 years ago
|
Flags: approval? → approval+
| Assignee | ||
Comment 5•19 years ago
|
||
For anybody else who reads the bug: Yes, the regex does still fix the original problem it was designed to fix (checking the version of PostgreSQL).
Checking in Bugzilla/Install/Requirements.pm;
/cvsroot/mozilla/webtools/bugzilla/Bugzilla/Install/Requirements.pm,v <-- Requirements.pm
new revision: 1.3; previous revision: 1.2
done
Status: ASSIGNED → RESOLVED
Closed: 19 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•