From 973a4062f3dcec950477e66dbd282d68185ef3fd Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Wed, 27 Jan 2021 18:56:02 +0100 Subject: [PATCH] Fix --- manifest.json | 10 +--------- scripts/install | 8 ++++---- scripts/remove | 2 +- scripts/restore | 14 +++++++------- scripts/upgrade | 2 +- 5 files changed, 14 insertions(+), 22 deletions(-) diff --git a/manifest.json b/manifest.json index 29abc13..0615403 100644 --- a/manifest.json +++ b/manifest.json @@ -21,15 +21,7 @@ "nginx" ], "arguments": { - "install": [{ - "name": "domain", - "type": "domain", - "ask": { - "en": "Choose a domain name for OpenTracker", - "fr": "Choisissez un nom de domaine pour OpenTracker" - }, - "example": "example.com" - } + "install": [ ] } } diff --git a/scripts/install b/scripts/install index 9901e26..dd88004 100644 --- a/scripts/install +++ b/scripts/install @@ -24,7 +24,7 @@ ynh_abort_if_errors #================================================= # Retrieve arguments -domain=$YNH_APP_ARG_DOMAIN +#domain=$YNH_APP_ARG_DOMAIN app=$YNH_APP_INSTANCE_NAME #================================================= @@ -40,7 +40,7 @@ test ! -e "$final_path" || ynh_die "This path already contains a folder" #================================================= ynh_script_progression --message="Storing installation settings..." --weight=1 -ynh_app_setting_set --app=$app --key=domain --value=$domain +#ynh_app_setting_set --app=$app --key=domain --value=$domain #================================================= # FIND AND OPEN A PORT @@ -69,9 +69,9 @@ ynh_script_progression --message="Installing OpenTracker..." --weight=5 ynh_app_setting_set --app=$app --key=final_path --value=$final_path git clone git://erdgeist.org/opentracker "$final_path" --quiet -pushd "$final_path" || ynh_die +pushd $final_path ynh_exec_warn_less make - popd || ynh_die + popd #================================================= # CREATE DEDICATED USER diff --git a/scripts/remove b/scripts/remove index 8014069..11f4b5c 100644 --- a/scripts/remove +++ b/scripts/remove @@ -16,7 +16,7 @@ ynh_script_progression --message="Loading installation settings..." --weight=1 app=$YNH_APP_INSTANCE_NAME -domain=$(ynh_app_setting_get --app=$app --key=domain) +#domain=$(ynh_app_setting_get --app=$app --key=domain) port=$(ynh_app_setting_get --app=$app --key=port) final_path=$(ynh_app_setting_get --app=$app --key=final_path) diff --git a/scripts/restore b/scripts/restore index 0d0a541..80b7058 100644 --- a/scripts/restore +++ b/scripts/restore @@ -26,18 +26,18 @@ ynh_script_progression --message="Loading installation settings..." --weight=1 app=$YNH_APP_INSTANCE_NAME -domain=$(ynh_app_setting_get --app=$app --key=domain) +#domain=$(ynh_app_setting_get --app=$app --key=domain) final_path=$(ynh_app_setting_get --app=$app --key=final_path) #================================================= # CHECK IF THE APP CAN BE RESTORED #================================================= -ynh_script_progression --message="Validating restoration parameters..." --weight=1 +# ynh_script_progression --message="Validating restoration parameters..." --weight=1 -ynh_webpath_available --domain=$domain \ - || ynh_die --message="Path not available: $domain" -test ! -d $final_path \ - || ynh_die --message="There is already a directory: $final_path " +# ynh_webpath_available --domain=$domain \ +# || ynh_die --message="Path not available: $domain" +# test ! -d $final_path \ +# || ynh_die --message="There is already a directory: $final_path " #================================================= # RESTORE THE APP MAIN DIR @@ -92,7 +92,7 @@ yunohost service add $app --description="Bittorrent tracker" --log="/var/log/$ap #================================================= ynh_script_progression --message="Starting a systemd service..." --weight=1 -ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log" +ynh_systemd_action --service_name=$app --action=start --log_path="/var/log/$app/$app.log" #================================================= # END OF SCRIPT diff --git a/scripts/upgrade b/scripts/upgrade index 8f30712..faae3d9 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -16,7 +16,7 @@ ynh_script_progression --message="Loading installation settings..." --weight=1 app=$YNH_APP_INSTANCE_NAME -domain=$(ynh_app_setting_get --app=$app --key=domain) +#domain=$(ynh_app_setting_get --app=$app --key=domain) final_path=$(ynh_app_setting_get --app=$app --key=final_path) #=================================================