Changeset 2577

Show
Ignore:
Timestamp:
12/29/09 10:04:38
Author:
bleibson
Message:

o added build support for the web page caching system.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/build/quickstart/linux/bw

    r2563 r2577  
    2626usage() { 
    2727  echo "  $PRG [CONFIG-SOURCE] [CONFIG] [PROJECT] [ -offline ] [ target ] " 
    28   echo "  $PRG ACTION
     28  echo "  $PRG ACTION
    2929  echo "" 
    3030  echo " where:" 
     
    6060  echo "    In a deployed system many of these actions are handled directly by a" 
    6161  echo "    deployed application. ACTION may be one of" 
    62   echo "      -reindex - runs the indexer directly out of the quickstart bedework" 
    63   echo "                 dist directory to rebuild the lucene indexes" 
    64   echo "      -zoneinfo - builds zoneinfo data for the timezomnes server" 
     62  echo "      -reindex   runs the indexer directly out of the quickstart bedework" 
     63  echo "                  dist directory to rebuild the lucene indexes" 
     64  echo "      -zoneinfo builds zoneinfo data for the timezomnes server" 
    6565  echo "                  requires -version and -tzdata parameters " 
     66  echo "      -buildWebCache    builds webcache" 
     67  echo "      -deployWebCache   builds and deploys webcache" 
    6668  echo "" 
    6769} 
     
    234236fi 
    235237 
     238if [ "$1" = "-buildwebcache" ] ; then 
     239  cd $QUICKSTART_HOME/cachedfeeder-1.0 
     240  ./buildWebCache 
     241  exit 
     242fi 
     243 
     244if [ "$1" = "-deploywebcache" ] ; then 
     245   cd $QUICKSTART_HOME/cachedfeeder-1.0 
     246  ./deployWebCache 
     247  exit 
     248fi 
     249 
     250 
    236251while [ "$1" != "" ] 
    237252do