1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/calibreweb_ynh.git synced 2024-09-03 18:16:20 +02:00

Change pass_hash generation

This commit is contained in:
Krakinou 2018-12-15 17:24:17 +01:00
parent ba4cc16a99
commit 1be0424575
2 changed files with 2 additions and 2 deletions

View file

@ -1,3 +1,3 @@
nickname=\'$admin\', nickname=\'$admin\',
default_language=\'$language\', default_language=\'$language\',
password=\'$(python ../conf/generate_password_hash.py $password $final_path/vendor)\' password=\'$pass_hash\'

View file

@ -25,7 +25,7 @@ path_url=$YNH_APP_ARG_PATH
admin=$YNH_APP_ARG_ADMIN admin=$YNH_APP_ARG_ADMIN
is_public=$YNH_APP_ARG_IS_PUBLIC is_public=$YNH_APP_ARG_IS_PUBLIC
language=$YNH_APP_ARG_LANGUAGE language=$YNH_APP_ARG_LANGUAGE
password=$YNH_APP_ARG_PASSWORD pass_hash=$(python ../conf/generate_password_hash.py $YNH_APP_ARG_PASSWORD $final_path/vendor)
app=$YNH_APP_INSTANCE_NAME app=$YNH_APP_INSTANCE_NAME
calibre_dir=$3 calibre_dir=$3