1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/joomla_ynh.git synced 2024-09-03 19:26:34 +02:00

Merge pull request #12 from YunoHost-Apps/lower_case

Lower case
This commit is contained in:
yalh76 2022-04-08 01:30:42 +02:00 committed by GitHub
commit 44ac863385
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,7 +29,7 @@ password=$YNH_APP_ARG_PASSWORD
app=$YNH_APP_INSTANCE_NAME
admin_email=$(ynh_user_get_info --username="$admin" --key="mail")
db_prefix="$(ynh_string_random --length="4")_"
db_prefix="$(ynh_string_random --length="5" | tr '[:upper:]' '[:lower:]' | tr -d '0123456789')_"
secret=$(ynh_string_random --length="16")
#=================================================