#!/bin/bash control() { ROOT=$(dirname $0) $ROOT/libs/p4d/p4d-control.sh $1 1> /dev/null RETVAL=$? if [ "$2" != "noexit" ] ; then if [ $RETVAL != "0" ] ; then echo "failed to control p4d; running processes:" ps aux|grep p4d exit 1 fi fi $ROOT/libs/solr-$SOLR_VERSION/example/solr-control.sh $1 RETVAL=$? if [ "$2" != "noexit" ] ; then if [ $RETVAL != "0" ] ; then echo "failed to control solr; running processes:" ps aux|grep java exit 1 fi fi }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 18494 | Paul Allen |
Fixed paths: search/search/... to search/... util/util/... to util/... Fixed permission bits +w for config and properties file that get touched during build/install Fixed INSTALL file and install dir (cause name clash on OS X) moved INSTALL to INSTALL.md |
||
//guest/perforce_software/p4search/main/search/search/test/control.sh | |||||
#1 | 16193 | perforce_software | Move p4search to main directory to match new branching path scheme. | ||
//guest/perforce_software/p4search/search/test/control.sh | |||||
#2 | 9007 | Doug Scheirer |
update workshop p4-search with the latest released code: * code updates - bug fixes * adding jetty + solr tarballs * script updates * updated p4java jar to latest release |
||
#1 | 8975 | Matt Attaway | Populate official version of p4-search from the original Doug Scheirer source | ||
//guest/doug_scheirer/p4-search/search/test/control.sh | |||||
#1 | 8476 | Doug Scheirer | p4-search copy from //depot/main/p4-search |