1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jirafeau_ynh.git synced 2024-09-03 19:35:53 +02:00

Merge pull request #59 from YunoHost-Apps/testing

Testing
This commit is contained in:
Kayou 2019-06-02 00:30:03 +02:00 committed by GitHub
commit 13aac5d02d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View file

@ -23,7 +23,9 @@ ynh_abort_if_errors
domain=$YNH_APP_ARG_DOMAIN
path_url=$YNH_APP_ARG_PATH
admin_user=$YNH_APP_ARG_ADMIN_USER
ynh_print_OFF
upload_password=$YNH_APP_ARG_UPLOAD_PASSWORD
ynh_print_ON
is_public=$YNH_APP_ARG_IS_PUBLIC
app=$YNH_APP_INSTANCE_NAME
@ -94,6 +96,7 @@ jirafeauconfigfile="$final_path/lib/config.local.php"
cp "../conf/config.local.php" "$jirafeauconfigfile"
# Set and save upload password, allowing an empty one
ynh_print_OFF
if [ -z "$upload_password" ]
then
ynh_replace_string --match_string="__YNH_UPLOAD_PASSWORD__" --replace_string="" --target_file="$jirafeauconfigfile"
@ -102,6 +105,7 @@ else
ynh_replace_string --match_string="__YNH_UPLOAD_PASSWORD__" --replace_string="'$upload_password'" --target_file="$jirafeauconfigfile"
ynh_app_setting_set --app=$app --key=upload_password --value="$upload_password"
fi
ynh_print_ON
#=================================================
# CONFIGURE JIRAFEAU
@ -124,7 +128,7 @@ ynh_replace_string --match_string="__YNH_ADMIN_USER__" --replace_string="$admin_
ynh_store_file_checksum --file="$jirafeauconfigfile"
# Remove the install.php
rm $final_path/install.php
ynh_secure_remove --file=$final_path/install.php
#=================================================
# GENERIC FINALISATION

View file

@ -21,7 +21,9 @@ path_url=$(ynh_app_setting_get --app=$app --key=path)
admin_user=$(ynh_app_setting_get --app=$app --key=admin_user)
is_public=$(ynh_app_setting_get --app=$app --key=is_public)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
ynh_print_OFF
upload_password=$(ynh_app_setting_get --app=$app --key=upload_password)
ynh_print_ON
#=================================================
# CHECK VERSION
@ -121,6 +123,7 @@ ynh_backup_if_checksum_is_different --file="$final_path/lib/config.local.php"
cp "../conf/config.local.php" "$final_path/lib/config.local.php"
# Set and save upload password, allowing an empty one
ynh_print_OFF
if [ -z "$upload_password" ]
then
ynh_replace_string --match_string="__YNH_UPLOAD_PASSWORD__" --replace_string="" --target_file="$jirafeauconfigfile"
@ -129,6 +132,7 @@ else
ynh_replace_string --match_string="__YNH_UPLOAD_PASSWORD__" --replace_string="'$upload_password'" --target_file="$jirafeauconfigfile"
ynh_app_setting_set --app=$app --key=upload_password --value="$upload_password"
fi
ynh_print_ON
#=================================================
# CONFIGURE JIRAFEAU
@ -151,7 +155,7 @@ ynh_replace_string --match_string="__YNH_ADMIN_USER__" --replace_string="$admin_
ynh_store_file_checksum --file="$jirafeauconfigfile"
# Remove the install.php
rm $final_path/install.php
ynh_secure_remove --file=$final_path/install.php
#=================================================
# GENERIC FINALISATION