Commit f3fc71485f207c20204318a2794543b2cd5a7e7c

Authored by Kevin G Fourie
1 parent 09a3275f

Added a scripts dir with the modded BR scripts.

scripts/diagnoseIndexing.sh 0 → 100755
  1 +#!/bin/sh
  2 +
  3 +cd ../search2/indexing/bin
  4 +/usr/local/zend/bin/php -Cq diagnose.php
... ...
scripts/indexMigrationTask.sh 0 → 100755
  1 +#!/bin/sh
  2 +
  3 +cd ../search2/indexing/bin
  4 +/usr/local/zend/bin/php -Cq cronMigration.php
... ...
scripts/indexingTask.sh 0 → 100755
  1 +#!/bin/sh
  2 +
  3 +cd ../search2/indexing/bin
  4 +/usr/local/zend/bin/php -Cq cronIndexer.php
... ...
scripts/optimizeIndexes.sh 0 → 100755
  1 +#!/bin/sh
  2 +
  3 +cd ../search2/indexing/bin
  4 +/usr/local/zend/bin/php -Cq optimise.php
... ...
scripts/registerExtractorTypes.sh 0 → 100755
  1 +#!/bin/sh
  2 +
  3 +cd ../search2/indexing/bin
  4 +/usr/local/zend/bin/php -Cq registerTypes.php
... ...
scripts/savedSearchTask.sh 0 → 100755
  1 +#!/bin/sh
  2 +
  3 +cd ../search2/indexing/bin
  4 +/usr/local/zend/bin/php -Cq cronSavedSearch.php
... ...
scripts/schedulerTask.sh 0 → 100755
  1 +#!/bin/sh
  2 +
  3 +cd ../bin
  4 +while true; do
  5 +/usr/local/zend/bin/php -Cq scheduler.php
  6 + sleep 30
  7 +done
... ...