From cf888d3f30b0a7f45822de2902b0f86b7a8fd65f Mon Sep 17 00:00:00 2001 From: downtownallday Date: Wed, 16 Sep 2020 09:39:49 -0400 Subject: [PATCH] Set miab-ldap migration version during first-time setup --- setup/migrate.py | 2 +- setup/start.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/setup/migrate.py b/setup/migrate.py index ff64627a..b9660a64 100755 --- a/setup/migrate.py +++ b/setup/migrate.py @@ -251,7 +251,7 @@ def get_current_migration(): ver = 0 while True: next_ver = (ver + 1) - migration_func = globals().get("migration_%d" % next_ver) + migration_func = globals().get("migration_miabldap_%d" % next_ver) if not migration_func: return ver ver = next_ver diff --git a/setup/start.sh b/setup/start.sh index 31cf0121..b5f98990 100755 --- a/setup/start.sh +++ b/setup/start.sh @@ -80,9 +80,9 @@ fi if [ ! -d $STORAGE_ROOT ]; then mkdir -p $STORAGE_ROOT fi -if [ ! -f $STORAGE_ROOT/mailinabox.version ]; then - echo $(setup/migrate.py --current) > $STORAGE_ROOT/mailinabox.version - chown $STORAGE_USER.$STORAGE_USER $STORAGE_ROOT/mailinabox.version +if [ ! -f $STORAGE_ROOT/mailinabox-ldap.version ]; then + echo $(setup/migrate.py --current) > $STORAGE_ROOT/mailinabox-ldap.version + chown $STORAGE_USER.$STORAGE_USER $STORAGE_ROOT/mailinabox-ldap.version fi # Save the global options in /etc/mailinabox.conf so that standalone