1 ## General koha-common default options file
3 PERL5LIB="/usr/share/koha/lib"
4 KOHA_HOME="/usr/share/koha"
6 ## Background record indexing
8 # The following options control the use of an indexing daemon for
11 # More information can be found here:
13 # http://wiki.koha-community.org/wiki/PackagesIndexDaemon
15 # IMPORTANT: You should comment the relevant line in /etc/cron.d/koha-common
16 # (the one that calls koha-rebuild-zebra)
18 # USE_INDEXER_DAEMON: "no" | "yes"
20 USE_INDEXER_DAEMON="no"
22 # Set an alternate indexer daemon. The default is to use the rebuild_zebra.pl
25 # Example: ALTERNATE_INDEXER_DAEMON="koha-index-daemon"
27 # ALTERNATE_INDEXER_DAEMON=""
29 # Lookup/indexing frecquency (in seconds) for the indexing daemon.
31 # The default value is 5
35 # Parameters to be passed to the indexer daemon. Useful for alternate indexers.
36 # Defaults to INDEXER_PARAMS="-daemon -x -sleep $INDEXER_TIMEOUT"
40 ## End of general koha-common default options