Tomas Cohen Arazi
98f551faec
This patch enables the indexer daemon by default on packages installs. It does so by setting USE_INDEXER_DAEMON=yes on the /etc/default/koha-common file. It does remove now irrelevant comments from that file. This patch is straightforward to review. If is just a matter of choosing to enable or not to enable by default. Kind regards PS: Let end users rejoice this so far hidden feature :-D Signed-off-by: Hector Castro <hector.hecaxmmx@gmail.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Brendan Gallagher <bredan@bywatersolutions.com>
37 lines
907 B
Text
37 lines
907 B
Text
## General koha-common default options file
|
|
|
|
PERL5LIB="/usr/share/koha/lib"
|
|
KOHA_HOME="/usr/share/koha"
|
|
|
|
## Background record indexing
|
|
#
|
|
# The following options control the use of an indexing daemon for
|
|
# Koha instances.
|
|
#
|
|
# More information can be found here:
|
|
#
|
|
# http://wiki.koha-community.org/wiki/PackagesIndexDaemon
|
|
#
|
|
# USE_INDEXER_DAEMON: "no" | "yes"
|
|
#
|
|
USE_INDEXER_DAEMON="yes"
|
|
|
|
# Set an alternate indexer daemon. The default is to use the rebuild_zebra.pl
|
|
# in daemon mode.
|
|
#
|
|
# Example: ALTERNATE_INDEXER_DAEMON="koha-index-daemon"
|
|
#
|
|
# ALTERNATE_INDEXER_DAEMON=""
|
|
|
|
# Lookup/indexing frecquency (in seconds) for the indexing daemon.
|
|
#
|
|
# The default value is 5
|
|
#
|
|
INDEXER_TIMEOUT=5
|
|
|
|
# Parameters to be passed to the indexer daemon. Useful for alternate indexers.
|
|
# Defaults to INDEXER_PARAMS="-daemon -x -sleep $INDEXER_TIMEOUT"
|
|
#
|
|
# INDEXER_PARAMS=""
|
|
|
|
## End of general koha-common default options
|