1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tooljet_ynh.git synced 2024-10-01 13:34:55 +02:00
This commit is contained in:
Tagadda 2022-02-18 13:37:36 +00:00
parent bedacb6e73
commit 8116b1ed58
2 changed files with 8 additions and 2 deletions

View file

@ -29,7 +29,8 @@ ynh_script_progression --message="Loading installation settings..." --time --wei
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url="/"
path_url=$(ynh_app_setting_get --app=$app --key=path)
port=$(ynh_app_setting_get --app=$app --key=port)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_user=$db_name
@ -42,6 +43,10 @@ ynh_script_progression --message="Validating restoration parameters..." --time -
test ! -d $final_path \
|| ynh_die --message="There is already a directory: $final_path "
# FIXME: Choose another port instead of dying...
ynh_port_available --port=$port \
|| ynh_die --message="Port $port is needs to be available for this app"
#=================================================
# STANDARD RESTORATION STEPS
#=================================================

View file

@ -17,8 +17,9 @@ ynh_script_progression --message="Loading installation settings..." --time --wei
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url="/"
path_url=$(ynh_app_setting_get --app=$app --key=path)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
port=$(ynh_app_setting_get --app=$app --key=port)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
lockbox_master_key=$(ynh_app_setting_get --app=$app --key=lockbox_master_key)
secret_key_base=$(ynh_app_setting_get --app=$app --key=secret_key_base)