Commit e78dc329 authored by jocuri%softhome.net's avatar jocuri%softhome.net

Patch for bug 254146: make the error message clear if servertest.pl failed to…

Patch for bug 254146: make the error message clear if servertest.pl failed to find the GID for HTTPD; patch by Byron Jones (glob) <bugzilla@glob.com.au>; r=joel, a=justdave.
parent 26640251
......@@ -43,7 +43,7 @@ if ($^O !~ /MSWin32/i) {
foreach my $pscmd (@pscmds) {
open PH, "$pscmd 2>/dev/null |";
while (my $line = <PH>) {
if ($line =~ /^(?:\S*\/)?httpd\s+(\d+)$/) {
if ($line =~ /^(?:\S*\/)?(?:httpd|apache)\s+(\d+)$/) {
$sgid = $1 if $1 > $sgid;
}
}
......@@ -76,7 +76,9 @@ Please refer to the webserver configuration section of the Bugzilla guide.
If you are using virtual hosts or suexec, this warning may not apply.\n";
}
} elsif ($^O !~ /MSWin32/i) {
print "TEST-???? Could not identify group webserver is using.\n";
print
"TEST-WARNING Failed to find the GID for the 'httpd' process, unable
to validate webservergroup.\n";
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment