]> git.koha-community.org Git - koha.git/commit
Bug 10782 - Add a koha-mysqlcheck script
authorMagnus Enger <magnus@enger.priv.no>
Mon, 14 Oct 2013 19:10:31 +0000 (21:10 +0200)
committerFridolin Somers <fridolin.somers@biblibre.com>
Wed, 10 Sep 2014 15:19:18 +0000 (17:19 +0200)
commitfd83e8fa0d053d841fda5df4356e28c75aa59f22
tree8960d34ef4e087429090127bb885783b9b29cd78
parent9c3e95f196efa590b8aea3fee6334c9bf0d66adf
Bug 10782 - Add a koha-mysqlcheck script

This patch adds the koha-mysqlcheck script, as a "frontend" for
the mysqlcheck command. It can be used to check the integrity of
database tables, as well as to repair them. See "man mysqlcheck"
for more information.

The script takes a Koha instance name as its only required
parameter. Any other parameters provided before the instance
name are passed directly to mysqlcheck, which means that all
the functionality of mysqlcheck is available through this script.

To test the script:
- Apply the patch, build your own packages and install them, or
- copy koha-mysqlcheck to a server already running off packages

- Run some variations of the command, with and without arguments,
  and check that the output makes sense. E.g.:
    sudo koha-mysqlcheck myinstance
    sudo koha-mysqlcheck -e myinstance # Extended checks
    sudo koha-mysqlcheck -e -v myinstance # Extended checks and verbose
- See "man mysqlcheck" for other relevant options

To test the man page:
- Run these commands and look at the formatted man page:
    $ xsltproc /usr/share/xml/docbook/stylesheet/docbook-xsl/manpages/docbook.xsl \
      debian/docs/koha-mysqlcheck.xml
    $ man -l koha-mysqlcheck.8
- Make sure this test passes:
    $ prove -v xt/verify-debian-docbook.t

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
(cherry picked from commit 25c932967f9def41b689b07f4536f398b612944b)
debian/docs/koha-mysqlcheck.xml [new file with mode: 0644]
debian/scripts/koha-mysqlcheck [new file with mode: 0755]