From 66c5ad18c9f66ba0fcea99683d69de98a31a86b0 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Fri, 8 Nov 2019 23:17:32 +0100 Subject: [PATCH] Migration 12 -> 13 --- locales/en.json | 2 +- src/yunohost/data_migrations/0010_migrate_to_apps_json.py | 6 +++--- ...pslist_system.py => 0013_futureproof_appslist_system.py} | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename src/yunohost/data_migrations/{0012_futureproof_appslist_system.py => 0013_futureproof_appslist_system.py} (100%) diff --git a/locales/en.json b/locales/en.json index 6f4df6cd8..4ad404da7 100644 --- a/locales/en.json +++ b/locales/en.json @@ -313,7 +313,7 @@ "migration_description_0010_migrate_to_apps_json": "Remove deprecated applists and use the new unified 'apps.json' list instead (outdated, replaced by migration 12)", "migration_description_0011_setup_group_permission": "Set up user group and set up permission for apps and services", "migration_description_0012_postgresql_password_to_md5_authentication": "Force PostgreSQL authentication to use MD5 for local connections", - "migration_description_0012_futureproof_appslist_system": "Migrate to the new future-proof appslist system", + "migration_description_0013_futureproof_appslist_system": "Migrate to the new future-proof appslist system", "migration_0003_start": "Starting migration to Stretch. The logs will be available in {logfile}.", "migration_0003_patching_sources_list": "Patching the sources.lists…", "migration_0003_main_upgrade": "Starting main upgrade…", diff --git a/src/yunohost/data_migrations/0010_migrate_to_apps_json.py b/src/yunohost/data_migrations/0010_migrate_to_apps_json.py index c83408ce8..e5ce65608 100644 --- a/src/yunohost/data_migrations/0010_migrate_to_apps_json.py +++ b/src/yunohost/data_migrations/0010_migrate_to_apps_json.py @@ -6,8 +6,8 @@ logger = getActionLogger('yunohost.migration') class MyMigration(Migration): - "Migrate from official.json to apps.json (outdated, replaced by migration 12)" + "Migrate from official.json to apps.json (outdated, replaced by migration 13)" def run(self): - logger.info("This migration is oudated and doesn't do anything anymore. The migration 12 will handle this instead.") - pass \ No newline at end of file + logger.info("This migration is oudated and doesn't do anything anymore. The migration 13 will handle this instead.") + pass diff --git a/src/yunohost/data_migrations/0012_futureproof_appslist_system.py b/src/yunohost/data_migrations/0013_futureproof_appslist_system.py similarity index 100% rename from src/yunohost/data_migrations/0012_futureproof_appslist_system.py rename to src/yunohost/data_migrations/0013_futureproof_appslist_system.py