Commit fd77ef1d5b613792c553d43959e734050832900a

Authored by Kevin G Fourie
1 parent e3b50a00

Added php.ini config file arg to script files.

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