From 1af6f9a46e0e63fcc948d1f863aef17f7045b643 Mon Sep 17 00:00:00 2001 From: Federico Maggi <7142570+fredmaggiowski@users.noreply.github.com> Date: Wed, 24 Jan 2024 17:37:45 +0100 Subject: [PATCH] docs: fix rand string cmd for encryption to work everywhere --- docs/30_Encryption_configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/30_Encryption_configuration.md b/docs/30_Encryption_configuration.md index 8a52240b..5bef208f 100644 --- a/docs/30_Encryption_configuration.md +++ b/docs/30_Encryption_configuration.md @@ -125,7 +125,7 @@ try { #### How to generate a local master key using Shell Command ```shell -LC_CTYPE=C tr -dc 'a-zA-Z0-9' < /dev/urandom | fold -w 96 | head -1 +LC_ALL=C tr -dc 'a-zA-Z0-9' < /dev/urandom | fold -w 96 | head -1 ``` ## Migration and change of the configurations