Bug 15166: Make output_pref takes a string in parameter
[koha.git] / debian / koha-common.default
blob66bc611424cca76a516079fe85e402ddbc16894b
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
9 # Koha instances.
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
23 # in daemon mode.
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
33 INDEXER_TIMEOUT=5
35 # Parameters to be passed to the indexer daemon. Useful for alternate indexers.
36 # Defaults to INDEXER_PARAMS="-daemon -x -sleep $INDEXER_TIMEOUT"
38 # INDEXER_PARAMS=""
40 ## End of general koha-common default options