1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/flarum_ynh.git synced 2024-09-03 18:36:24 +02:00

Ask for admin password during installation

Better than assigning a random password
This commit is contained in:
tituspijean 2021-03-21 15:04:44 +01:00
parent 19ccf038eb
commit 2193a784eb
2 changed files with 10 additions and 1 deletions

View file

@ -49,6 +49,15 @@
"type": "user",
"example": "johndoe"
},
{
"name": "password",
"type": "password",
"help": {
"en": "Choose your password. It will be useful if logging in from YunoHost fails or is disrupted.",
"fr": "Choisissez votre mot de passe. Il sera utile si la connexion via YunoHost échoue ou est perturbée."
},
"example": "Choose a password"
},
{
"name": "title",
"type": "string",

View file

@ -30,11 +30,11 @@ ynh_abort_if_errors
domain=$YNH_APP_ARG_DOMAIN
path_url=$YNH_APP_ARG_PATH
admin=$YNH_APP_ARG_ADMIN
admin_pwd=$YNH_APP_ARG_PASSWORD
is_public=$YNH_APP_ARG_IS_PUBLIC
language=$YNH_APP_ARG_LANGUAGE
title=$YNH_APP_ARG_TITLE
admin_pwd=$(ynh_string_random --length=8)
admin_mail=$(ynh_user_get_info --username=$admin --key=mail)
app=$YNH_APP_INSTANCE_NAME