Bug 10860: In-House Use
[koha.git] / debian / koha-common.default
1 ## General koha-common default options file
2
3 PERL5LIB="/usr/share/koha/lib"
4 KOHA_HOME="/usr/share/koha"
5
6 ## Background record indexing
7 #
8 # The following options control the use of an indexing daemon for
9 # Koha instances.
10 #
11 # More information can be found here:
12 #
13 #     http://wiki.koha-community.org/wiki/PackagesIndexDaemon
14 #
15 # IMPORTANT: You should comment the relevant line in /etc/cron.d/koha-common
16 #            (the one that calls koha-rebuild-zebra)
17 #
18 # USE_INDEXER_DAEMON: "no" | "yes"
19 #
20 USE_INDEXER_DAEMON="no"
21
22 # Set an alternate indexer daemon. The default is to use the rebuild_zebra.pl
23 # in daemon mode.
24 #
25 # Example: ALTERNATE_INDEXER_DAEMON="koha-index-daemon"
26 #
27 # ALTERNATE_INDEXER_DAEMON=""
28
29 # Lookup/indexing frecquency (in seconds) for the indexing daemon.
30 #
31 # The default value is 5
32 #
33 INDEXER_TIMEOUT=5
34
35 # Parameters to be passed to the indexer daemon. Useful for alternate indexers.
36 # Defaults to INDEXER_PARAMS="-daemon -x -sleep $INDEXER_TIMEOUT"
37 #
38 # INDEXER_PARAMS=""
39
40 ## End of general koha-common default options