Bug 7924 - Fix handling of command line arguments in koha-remove
authorMagnus Enger <magnus@enger.priv.no>
Mon, 30 Apr 2012 11:49:38 +0000 (13:49 +0200)
committerPaul Poulain <paul.poulain@biblibre.com>
Mon, 14 May 2012 12:01:22 +0000 (14:01 +0200)
koha-remove would fail with a message like this:
Removing Koha instance --
ERROR 1396 (HY000) at line 1: Operation DROP USER failed for 'koha_--'@'%'

After fixing this, the --keep-mysql option made the script exit without doing
anything.

To test:

Alt 1
- Build package with build-git-snapshot
- Install package

Alt 2
- Replicate the changes in the patch in an existing installation

Then:
- Add instance1 and instance2
- koha-remove instance1
-- Check that script completes and the databse is gone
- koha-remove --keep-mysql instance2
-- Check that the script completes but the database is not removed

Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>

debian/scripts/koha-remove

index 09720ea..567ead8 100755 (executable)
 set -e
 
 args=$(getopt -l keep-mysql -o k -n $0 -- "$@")
-set -- $args
+eval set -- $args
 while [ ! -z "$1" ]
 do
     case "$1" in
-         -k|--keep-mysql) keepmysql=1; exit;;
+         -k|--keep-mysql) keepmysql=1; shift;;
+         --) shift; break;;
           *) break;;
     esac
     shift
 done
 
-
 for name in "$@"
 do
     echo "Removing Koha instance $name"