mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
migrate_to_bullseye: tweaks to point to the current beta-testing forum thread
This commit is contained in:
parent
9c1f3c4be8
commit
d07cf83d93
2 changed files with 7 additions and 5 deletions
|
@ -2502,13 +2502,14 @@ def is_true(arg):
|
|||
def unstable_apps():
|
||||
|
||||
output = []
|
||||
deprecated_apps = ["mailman"]
|
||||
|
||||
for infos in app_list(full=True)["apps"]:
|
||||
|
||||
if not infos.get("from_catalog") or infos.get("from_catalog").get("state") in [
|
||||
"inprogress",
|
||||
"notworking",
|
||||
]:
|
||||
] or infos["id"] in deprecated_apps:
|
||||
output.append(infos["id"])
|
||||
|
||||
return output
|
||||
|
|
|
@ -116,7 +116,6 @@ class MyMigration(Migration):
|
|||
"mariadb-common --reinstall -o Dpkg::Options::='--force-confmiss'"
|
||||
)
|
||||
if ret != 0:
|
||||
# FIXME: i18n once this is stable?
|
||||
raise YunohostError("Failed to reinstall mariadb-common ?", raw_msg=True)
|
||||
|
||||
#
|
||||
|
@ -228,7 +227,6 @@ class MyMigration(Migration):
|
|||
"-o Dpkg::Options::='--force-confmiss'"
|
||||
)
|
||||
if ret != 0:
|
||||
# FIXME: i18n once this is stable?
|
||||
raise YunohostError(
|
||||
"Failed to force the install of php dependencies ?", raw_msg=True
|
||||
)
|
||||
|
@ -254,7 +252,6 @@ class MyMigration(Migration):
|
|||
|
||||
logger.info("Simulating upgrade...")
|
||||
if os.system(cmd) == 0:
|
||||
# FIXME: i18n once this is stable?
|
||||
raise YunohostError(
|
||||
"The upgrade cannot be completed, because some app dependencies would need to be removed?",
|
||||
raw_msg=True,
|
||||
|
@ -332,7 +329,11 @@ class MyMigration(Migration):
|
|||
|
||||
message = m18n.n("migration_0021_general_warning")
|
||||
|
||||
# FIXME: re-enable this message with updated topic link once we release the migration as stable
|
||||
# FIXME: update this message with updated topic link once we release the migration as stable
|
||||
message = (
|
||||
"N.B.: **THIS MIGRATION IS STILL IN BETA-STAGE** ! If your server hosts critical services and if you are not too confident with debugging possible issues, we recommend you to wait a little bit more while we gather more feedback and polish things up. If on the other hand you are relatively confident with debugging small issues that may arise, you are encouraged to run this migration ;)! You can read and share feedbacks on this forum thread: https://forum.yunohost.org/t/18531\n\n"
|
||||
+ message
|
||||
)
|
||||
# message = (
|
||||
# "N.B.: This migration has been tested by the community over the last few months but has only been declared stable recently. If your server hosts critical services and if you are not too confident with debugging possible issues, we recommend you to wait a little bit more while we gather more feedback and polish things up. If on the other hand you are relatively confident with debugging small issues that may arise, you are encouraged to run this migration ;)! You can read about remaining known issues and feedback from the community here: https://forum.yunohost.org/t/12195\n\n"
|
||||
# + message
|
||||
|
|
Loading…
Add table
Reference in a new issue