diff options
author | lpsolit%gmail.com <> | 2005-09-15 17:35:06 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-09-15 17:35:06 +0000 |
commit | 9f118a0e690eda56322a8f3be119dc38d4ac70dd (patch) | |
tree | 5aaa6d62dc279eae5982bf35f38c58147b1b69bb /testserver.pl | |
parent | Bug 293357: Update a comment in pages/bug-writing.html.tmpl about lost passwo... (diff) | |
download | bugzilla-9f118a0e690eda56322a8f3be119dc38d4ac70dd.tar.gz bugzilla-9f118a0e690eda56322a8f3be119dc38d4ac70dd.tar.bz2 bugzilla-9f118a0e690eda56322a8f3be119dc38d4ac70dd.zip |
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-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) { |