From 9e9ddb867648a93a2074af94a246b3a95a1e2e75 Mon Sep 17 00:00:00 2001 From: Kayou Date: Tue, 30 Jul 2024 07:38:40 +0200 Subject: [PATCH 1/2] Allow both unstable and testing --- bookworm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bookworm b/bookworm index 4dc956d..dbff98a 100755 --- a/bookworm +++ b/bookworm @@ -234,9 +234,9 @@ function apt_install() { function check_assertions() { - if [[ $DISTRIB != "unstable" ]] + if [[ $DISTRIB == "stable" ]] then - error "Only unstable branch is supported for Bookworm right now. We ABSOLUTELY DISCOURAGE using YunoHost Bookworm in any sort of production (or even testing) setup right now. Everything is in PRE-ALPHA STAGE ONLY." + error "Only unstable and testing branches are supported for Bookworm right now. We ABSOLUTELY DISCOURAGE using YunoHost Bookworm in any sort of production setup right now. Everything is in BETA STAGE ONLY." return 1 fi From 406d923554d1686784d06728f9e37c22a0a10a94 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin <4533074+alexAubin@users.noreply.github.com> Date: Tue, 30 Jul 2024 13:16:00 +0200 Subject: [PATCH 2/2] Update bookworm --- bookworm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookworm b/bookworm index dbff98a..02a2029 100755 --- a/bookworm +++ b/bookworm @@ -236,7 +236,7 @@ function check_assertions() { if [[ $DISTRIB == "stable" ]] then - error "Only unstable and testing branches are supported for Bookworm right now. We ABSOLUTELY DISCOURAGE using YunoHost Bookworm in any sort of production setup right now. Everything is in BETA STAGE ONLY." + error "Only unstable and testing branches are supported for Bookworm right now. We ABSOLUTELY DISCOURAGE using YunoHost Bookworm in any sort of production setup right now UNLESS YOU ARE A POWER-USER. Everything is in BETA STAGE ONLY." return 1 fi