diff options
author | lpsolit%gmail.com <> | 2005-09-15 19:35:06 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-09-15 19:35:06 +0200 |
commit | 9f118a0e690eda56322a8f3be119dc38d4ac70dd (patch) | |
tree | 5aaa6d62dc279eae5982bf35f38c58147b1b69bb | |
parent | 01f0e815228849c8a51489a723d03723cd26bcf4 (diff) | |
download | bugzilla-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
-rwxr-xr-x | testserver.pl | 2 |
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) { |