Subject: exit nicely if mysql config is skipped
Author: Olivier Sallou <osallou@debian.org>
Last-Updated: 2016-06-17
Description: if mysql configuration is skipped, update process
 should not exit with error
Forwarded: no
--- a/var/lib/biomaj/migration/update.pl
+++ b/var/lib/biomaj/migration/update.pl
@@ -29,7 +29,7 @@
         warn "You need to configure the database access before executing the upgrade\n";
         warn "Execute the script manually once configuration is done\n";
         printUsage();
-        die;
+        exit 0;
 }
 
 
