From b57cfaac92bdbe69cd84eea2f402fbff54095939 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Sat, 6 Jun 2020 03:33:38 +0200 Subject: [PATCH] Add alpha stage disclaimer in the disclaimer --- src/yunohost/data_migrations/0015_migrate_to_buster.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/yunohost/data_migrations/0015_migrate_to_buster.py b/src/yunohost/data_migrations/0015_migrate_to_buster.py index b56e8322c..08e85e704 100644 --- a/src/yunohost/data_migrations/0015_migrate_to_buster.py +++ b/src/yunohost/data_migrations/0015_migrate_to_buster.py @@ -138,6 +138,8 @@ class MyMigration(Migration): message = m18n.n("migration_0015_general_warning") + message = "THIS MIGRATION IS CURRENTLY IN ALPHA-STAGE TESTING. YOU SHOULD *NOT* RUN IT FOR NOW ON A PRODUCTION SERVER UNLESS YOU KNOW EXACTLY WHAT YOU ARE DOING OR HAVE A WAY TO ROLLBACK. MORE INFO ON THE FORUM!\n\n" + message + if problematic_apps: message += "\n\n" + m18n.n("migration_0015_problematic_apps_warning", problematic_apps=problematic_apps)