summaryrefslogtreecommitdiffstats
path: root/testserver.pl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2005-09-15 19:35:06 +0200
committerlpsolit%gmail.com <>2005-09-15 19:35:06 +0200
commit9f118a0e690eda56322a8f3be119dc38d4ac70dd (patch)
tree5aaa6d62dc279eae5982bf35f38c58147b1b69bb /testserver.pl
parent01f0e815228849c8a51489a723d03723cd26bcf4 (diff)
downloadbugzilla-9f118a0e690eda56322a8f3be119dc38d4ac70dd.tar.gz
bugzilla-9f118a0e690eda56322a8f3be119dc38d4ac70dd.tar.xz
Bug 299468: Unable to run testserver.pl on FreeBSD - Patch by Dennis Melentyev <dennis.melentyev@infopulse.com.ua> r=joel a=justdave
Diffstat (limited to 'testserver.pl')
-rwxr-xr-xtestserver.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/testserver.pl b/testserver.pl
index a6573c8bc..b768dc939 100755
--- a/testserver.pl
+++ b/testserver.pl
@@ -38,7 +38,7 @@ if ((@ARGV != 1) || ($ARGV[0] !~ /^https?:/))
# Try to determine the GID used by the webserver.
-my @pscmds = ('ps -eo comm,gid', 'ps -acxo command,gid');
+my @pscmds = ('ps -eo comm,gid', 'ps -acxo command,gid', 'ps -acxo command,rgid');
my $sgid = 0;
if ($^O !~ /MSWin32/i) {
foreach my $pscmd (@pscmds) {