1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/lstu_ynh.git synced 2024-09-03 19:36:12 +02:00
This commit is contained in:
ericgaspar 2021-06-21 15:51:08 +02:00
parent d71b2649c8
commit 72552c42dc
No known key found for this signature in database
GPG key ID: 574F281483054D44
4 changed files with 7 additions and 7 deletions

View file

@ -29,11 +29,11 @@
# secret hashed passphrase to access some admin features
# Hash your password by issuing `echo -n s3cr3T | sha256sum` on your terminal
# optional, but you won't have access to admin /stats if not set and if adminpwd is not set either
hashed_adminpwd => '__PASSWORD_HASHED__',
hashed_adminpwd => '__HASHED_PASSWORD__',
# choose a theme. See the available themes in `themes` directory
# optional, default is 'default'
theme => '__SELECTED_THEME__', # default or milligram
theme => '__THEME__', # default or milligram
# number of URLs to be displayed per page in /stats
# optional, default is 10

View file

@ -130,8 +130,8 @@ ynh_replace_string --match_string="__PORT__" --replace_string="$port" --target_f
ynh_replace_string --match_string="__DB_NAME__" --replace_string="$db_name" --target_file="$config"
ynh_replace_string --match_string="__DB_USER__" --replace_string="$db_user" --target_file="$config"
ynh_replace_string --match_string="__DB_PWD__" --replace_string="$db_pwd" --target_file="$config"
ynh_replace_string --match_string="__SELECTED_THEME__" --replace_string="$theme" --target_file="$config"
ynh_replace_string --match_string="__PASSWORD_HASHED__" --replace_string="$hashed_password" --target_file="$config"
ynh_replace_string --match_string="__THEME__" --replace_string="$theme" --target_file="$config"
ynh_replace_string --match_string="__HASHED_PASSWORD__" --replace_string="$hashed_password" --target_file="$config"
ynh_replace_string --match_string="__SECRET__" --replace_string="$secret" --target_file="$config"
if [ $is_public -eq 0 ];

View file

@ -174,8 +174,8 @@ ynh_install_app_dependencies $pkg_dependencies
# ynh_replace_string --match_string="__DB_NAME__" --replace_string="$db_name" --target_file="$config"
# ynh_replace_string --match_string="__DB_USER__" --replace_string="$db_user" --target_file="$config"
# ynh_replace_string --match_string="__DB_PWD__" --replace_string="$db_pwd" --target_file="$config"
# ynh_replace_string --match_string="__SELECTED_THEME__" --replace_string="$theme" --target_file="$config"
# ynh_replace_string --match_string="__PASSWORD_HASHED__" --replace_string="$hashed_password" --target_file="$config"
# ynh_replace_string --match_string="__THEME__" --replace_string="$theme" --target_file="$config"
# ynh_replace_string --match_string="__HASHED_PASSWORD__" --replace_string="$hashed_password" --target_file="$config"
# ynh_replace_string --match_string="__SECRET__" --replace_string="$secret" --target_file="$config"
# if [ $is_public -eq 0 ];