source: gs3-extensions/solr/trunk/src/bin/script/debug_solr_server.pl@ 29287

Last change on this file since 29287 was 29287, checked in by ak19, 10 years ago

First of 2 commits. SVN executable not set in GS3 binary's ext/solr/bin/script files. So trying to unset and reset the svn property, since they advise against using chmod and recommend using SVN's propset and propdel

File size: 482 bytes
Line 
1BEGIN
2{
3 die "GSDLHOME not set\n" unless defined $ENV{'GSDLHOME'};
4 die "GSDLOS not set\n" unless defined $ENV{'GSDLOS'};
5 unshift (@INC, "$ENV{'GSDLHOME'}/perllib");
6 die "GEXT_SOLR not set\n" unless defined $ENV{'GEXT_SOLR'};
7
8 my $solr_ext = $ENV{'GEXT_SOLR'};
9 unshift (@INC, "$solr_ext/perllib");
10}
11
12use strict;
13use util;
14use solrutil;
15use solrserver;
16
17my $full_builddir = shift(@_);
18
19my $solr_server = new solrserver($full_builddir);
20$solr_server->start();
Note: See TracBrowser for help on using the repository browser.