mirror of
https://github.com/lldap/lldap.git
synced 2024-11-25 09:06:03 +00:00
10609b25e9
Deprecate key_file in favor of key_seed, add a script to generate the secrets
12 lines
237 B
Bash
Executable file
12 lines
237 B
Bash
Executable file
#! /bin/sh
|
|
|
|
function print_random () {
|
|
LC_ALL=C tr -dc 'A-Za-z0-9!#%&()*+,-./:;<=>?@[\]^_{|}~' </dev/urandom | head -c 32
|
|
}
|
|
|
|
/bin/echo -n "LLDAP_JWT_SECRET='"
|
|
print_random
|
|
echo "'"
|
|
/bin/echo -n "LLDAP_KEY_SEED='"
|
|
print_random
|
|
echo "'"
|