View | Details | Raw Unified | Return to bug 10447
Collapse All | Expand All

(-)a/Makefile.PL (-1 / +1 lines)
Lines 477-483 my %valid_config_values = ( Link Here
477
  'AUTH_INDEX_MODE' => { 'grs1' => 1, 'dom' => 1 },
477
  'AUTH_INDEX_MODE' => { 'grs1' => 1, 'dom' => 1 },
478
  'BIB_INDEX_MODE'  => { 'grs1' => 1, 'dom' => 1 },
478
  'BIB_INDEX_MODE'  => { 'grs1' => 1, 'dom' => 1 },
479
  'ZEBRA_MARC_FORMAT' => { 'marc21' => 1, 'normarc' => 1, 'unimarc' => 1 }, # FIXME should generate from contents of distributation
479
  'ZEBRA_MARC_FORMAT' => { 'marc21' => 1, 'normarc' => 1, 'unimarc' => 1 }, # FIXME should generate from contents of distributation
480
  'ZEBRA_LANGUAGE'    => { 'en' => 1, 'es' => 1, 'fr' => 1, 'nb' => 1 }, # FIXME should generate from contents of distribution
480
  'ZEBRA_LANGUAGE'    => { 'en' => 1, 'es' => 1, 'fr' => 1, 'nb' => 1, 'ru' => 1, 'uk' => 1 }, # FIXME should generate from contents of distribution
481
  'ZEBRA_TOKENIZER' => { chr => 1, icu => 1 },
481
  'ZEBRA_TOKENIZER' => { chr => 1, icu => 1 },
482
  'RUN_DATABASE_TESTS' => { 'yes' => 1, 'no' => 1 },
482
  'RUN_DATABASE_TESTS' => { 'yes' => 1, 'no' => 1 },
483
  'USE_MEMCACHED'      => { 'yes' => 1, 'no' => 1 },
483
  'USE_MEMCACHED'      => { 'yes' => 1, 'no' => 1 },
(-)a/debian/docs/koha-create.xml (-1 / +1 lines)
Lines 26-32 Link Here
26
      <command>koha-create</command>
26
      <command>koha-create</command>
27
      <arg choice="req"><option>--create-db</option>|<option>--request-db</option>|<option>--populate-db</option>|<option>--use-db</option></arg>
27
      <arg choice="req"><option>--create-db</option>|<option>--request-db</option>|<option>--populate-db</option>|<option>--use-db</option></arg>
28
      <arg><option>--marcflavor</option> marc21|normarc|unimarc</arg>
28
      <arg><option>--marcflavor</option> marc21|normarc|unimarc</arg>
29
      <arg><option>--zebralang</option> en|nb|fr</arg>
29
      <arg><option>--zebralang</option> en|es|fr|nb|ru|uk</arg>
30
      <arg><option>--defaultsql</option> /path/to/some.sql</arg>
30
      <arg><option>--defaultsql</option> /path/to/some.sql</arg>
31
      <arg><option>--configfile</option> /path/to/config</arg>
31
      <arg><option>--configfile</option> /path/to/config</arg>
32
      <arg><option>--passwdfile</option> /path/to/passwd</arg>
32
      <arg><option>--passwdfile</option> /path/to/passwd</arg>
(-)a/debian/scripts/koha-create (-2 / +1 lines)
Lines 21-27 set -e Link Here
21
21
22
usage="Usage: $0 [--create-db|--request-db|--populate-db|--use-db] \
22
usage="Usage: $0 [--create-db|--request-db|--populate-db|--use-db] \
23
    [--marcflavor marc21|normarc|unimarc] \
23
    [--marcflavor marc21|normarc|unimarc] \
24
    [--zebralang en|nb|fr|es] \
24
    [--zebralang en|es|fr|nb|ru|uk] \
25
    [--defaultsql /path/to/some.sql] \
25
    [--defaultsql /path/to/some.sql] \
26
    [--configfile /path/to/config] [--passwdfile /path/to/passwd] \
26
    [--configfile /path/to/config] [--passwdfile /path/to/passwd] \
27
    [--database database] [--adminuser n] instancename"
27
    [--database database] [--adminuser n] instancename"
28
- 

Return to bug 10447