]> git.koha-community.org Git - koha.git/commit
Bug 6913: More options for koha-create and koha-remove
authorJared Camins-Esakov <jcamins@cpbibliography.com>
Sat, 8 Oct 2011 19:34:24 +0000 (15:34 -0400)
committerChris Nighswonger <chris.nighswonger@gmail.com>
Mon, 20 Feb 2012 02:00:04 +0000 (21:00 -0500)
commitc0fa60f0e63d4c9f86a87db871bd1daf2018d483
tree27d8b298f8daf125d11ed93c4a0fef21ce470e6e
parent21697712629574ad7e9fab7e5df25e36a2bde35b
Bug 6913: More options for koha-create and koha-remove

This commit makes koha-create more flexible by adding a number of command-line
and configuration options.

The biggest change is to add support for pre-determined MySQL credentials using
a file in /etc/koha/passwd (for security reasons, if you use this feature, make
sure the file is not world-readable). The configuration file has the following
format:
instance:user:password:database
The database is optional, but the other two are both required if you want to
specify MySQL credentials. If no credentials are specified for a given instance,
the standard koha_instance username and an auto-generated password are used.

The following additional command line options are now available:
* --use-db - use a pre-existing database, see also --database
* --database - specify the name of the mysql database (still defaults to
  koha_instance)
* --passwdfile - specify a custom (Koha) passwd file for MySQL credentials

The following additional variables are now available (for use in
koha-sites.conf or a custom config file):
* OPACPORT (previously added but not documented) - port on which the OPAC
  should be served
* OPACPREFIX - prefix for the OPAC's virtual host
* OPACSUFFIX - suffix for the OPAC's virtual host

This commit also adds the --keep-mysql option to koha-remove, which, if
specified, will prevent koha-remove from deleting the database or MySQL user
when removing an instance.

Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
(cherry picked from commit 297d22459f670212624d22a0e48447799004935b)

Signed-off-by: Chris Nighswonger <chris.nighswonger@gmail.com>
debian/docs/koha-create.xml
debian/docs/koha-remove.xml
debian/scripts/koha-create
debian/scripts/koha-remove