Changeset 2577
- Timestamp:
- 12/29/09 10:04:38
- Files:
-
- trunk/build/quickstart/linux/bw (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build/quickstart/linux/bw
r2563 r2577 26 26 usage() { 27 27 echo " $PRG [CONFIG-SOURCE] [CONFIG] [PROJECT] [ -offline ] [ target ] " 28 echo " $PRG ACTION "28 echo " $PRG ACTION" 29 29 echo "" 30 30 echo " where:" … … 60 60 echo " In a deployed system many of these actions are handled directly by a" 61 61 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" 65 65 echo " requires -version and -tzdata parameters " 66 echo " -buildWebCache builds webcache" 67 echo " -deployWebCache builds and deploys webcache" 66 68 echo "" 67 69 } … … 234 236 fi 235 237 238 if [ "$1" = "-buildwebcache" ] ; then 239 cd $QUICKSTART_HOME/cachedfeeder-1.0 240 ./buildWebCache 241 exit 242 fi 243 244 if [ "$1" = "-deploywebcache" ] ; then 245 cd $QUICKSTART_HOME/cachedfeeder-1.0 246 ./deployWebCache 247 exit 248 fi 249 250 236 251 while [ "$1" != "" ] 237 252 do
