From 9bc29ee9645a3e3a60942b3e052119cb1cf33642 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Thu, 17 Oct 2024 18:07:07 +0200 Subject: [PATCH] chg: Add a warning regarding the need of valkey 8.0 --- bin/update.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bin/update.py b/bin/update.py index ae6cde8f..189938ca 100755 --- a/bin/update.py +++ b/bin/update.py @@ -65,6 +65,11 @@ def main() -> None: old_hash = compute_hash_self() + print('* Lookyloo requires valkey 8.0 or more recent. If you are updating from an existing instance, make sure to update/migrate to valkey 8.0.') + print('* If you do not do that, restarting will not work but you will not loose anything, just need to install valkey 8.0.') + print('* Installing valkey 8.0 simply means cloning valkey, and runnig make.') + keep_going(args.yes) + print('* Update repository.') keep_going(args.yes) run_command('git pull')