From b5445e1e56497f8bdc1de35a8325418c44b96d37 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Tue, 19 Mar 2024 13:42:12 +0100 Subject: Fix CLI install regressions (#6214) * Fix CLI install with prefix It was not possible to pass a blank prefix * Fix regression EXIT_CODE_ALREADY_EXISTS The dedicated exit code was not sent anymore when a user already exists --- cli/create-user.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'cli/create-user.php') diff --git a/cli/create-user.php b/cli/create-user.php index 61bbc3563..1be604a42 100755 --- a/cli/create-user.php +++ b/cli/create-user.php @@ -58,6 +58,10 @@ if (!empty($cliOptions->errors)) { $username = $cliOptions->user; +if (preg_grep("/^$username$/i", listUsers())) { + fail('FreshRSS warning: username already exists “' . $username . '”', EXIT_CODE_ALREADY_EXISTS); +} + echo 'FreshRSS creating user “', $username, "”…\n"; $values = [ -- cgit v1.2.3