[Koha-patches] [PATCH] Bug 7924 - Fix handling of command line arguments in koha-remove

Magnus Enger magnus at enger.priv.no
Mon Apr 30 13:56:23 CEST 2012


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
---
 debian/scripts/koha-remove |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/debian/scripts/koha-remove b/debian/scripts/koha-remove
index 09720ea..567ead8 100755
--- a/debian/scripts/koha-remove
+++ b/debian/scripts/koha-remove
@@ -20,17 +20,17 @@
 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"
-- 
1.7.2.5



More information about the Koha-patches mailing list