changed obf string to lowercase
This commit is contained in:
parent
80d52e450e
commit
b61970a794
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ sudo mkdir /etc/saleor
|
|||
|
||||
echo $(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 2048| head -n 1)>/etc/saleor/api_sk
|
||||
# Set variables for the password, obfuscation string, and user/database names
|
||||
OBFSTR=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 8| head -n 1)
|
||||
OBFSTR=$(cat /dev/urandom | tr -dc 'a-z0-9' | fold -w 8| head -n 1)
|
||||
PGSQLUSERPASS=$(cat /dev/urandom | tr -dc 'A-Za-z0-9' | fold -w 128 | head -n 1)
|
||||
PGSQLDBNAME="saleor_db_$OBFSTR"
|
||||
PGSQLUSER="saleor_dbu_$OBFSTR"
|
||||
|
|
Loading…
Reference in a new issue